commented out http header printed to stdout

This commit is contained in:
valzav 2014-05-02 14:46:15 -07:00
parent 00edd3958c
commit bc1792dc98

View file

@ -32,7 +32,7 @@ namespace fc { namespace http {
}
ss << "Content-Length: "<<body_length<<"\r\n\r\n";
auto s = ss.str();
fc::cerr<<s<<"\n";
//fc::cerr<<s<<"\n";
con->get_socket().write( s.c_str(), s.size() );
}