adds more logic for reading client handshake responses

This commit is contained in:
Peter Thorson
2013-03-30 22:41:57 -05:00
parent ddddef5444
commit 46fb7e6645
3 changed files with 69 additions and 41 deletions

View File

@@ -126,6 +126,11 @@ BOOST_AUTO_TEST_CASE( connect_con ) {
// the read response internal state
std::cout << "output: " << out.str() << std::endl;
// TODO: more tests related to reading the HTTP response
std::stringstream channel2;
channel2 << "e\r\n\r\n";
channel2 >> *con;
}