fixed spelling, including "experimental" in API

This commit is contained in:
breyed
2013-06-08 11:03:11 -05:00
parent 2e2a8e4346
commit 808a8ce0a9
40 changed files with 76 additions and 76 deletions

View File

@@ -136,7 +136,7 @@ BOOST_AUTO_TEST_CASE( invalid_websocket_version ) {
BOOST_CHECK_EQUAL(run_server_test(s,input), output);
}
BOOST_AUTO_TEST_CASE( unimplimented_websocket_version ) {
BOOST_AUTO_TEST_CASE( unimplemented_websocket_version ) {
std::string input = "GET / HTTP/1.1\r\nHost: www.example.com\r\nConnection: upgrade\r\nUpgrade: websocket\r\nSec-WebSocket-Version: 14\r\nSec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ==\r\nOrigin: http://www.example.com\r\n\r\n";
std::string output = "HTTP/1.1 400 Bad Request\r\nSec-WebSocket-Version: 0,7,8,13\r\nServer: test\r\n\r\n";