Added a missing return statement in HTTPReader::Read

This commit is contained in:
Thulinma 2014-03-12 16:18:49 +01:00
parent 1d1519111f
commit bdc4b194df

View file

@ -334,6 +334,7 @@ bool HTTP::Parser::Read(Socket::Connection & conn){
if (conn.Received().size()){
return Read(conn);
}
return false;
} //HTTPReader::Read
/// Attempt to read a whole HTTP request or response from a std::string buffer.