send buffer offset

This commit is contained in:
orignal 2014-08-11 18:33:01 -04:00
parent b6e0fdf920
commit e866243097
2 changed files with 4 additions and 2 deletions

View file

@ -545,9 +545,9 @@ namespace util
{
std::string content ("");
content += "<html>" + HTTPConnection::itoopieImage + "</html>";
std::string response ("HTTP/1.0 200 OK\r\n\r\n");
std::string response ("HTTP/1.0 200 OK\r\n");
response += "Content-Length: " + boost::lexical_cast<std::string>(content.length()) + "\r\n";
response += "Content-Type: text/html\r\n";
response += "Content-Type: text/html\r\n\r\n";
response += content;
m_Stream->Send ((uint8_t *)response.c_str (), response.length (), 30);
m_Stream->Close ();