Skip to content

Commit

Permalink
Make HTTP Connection header capitalized
Browse files Browse the repository at this point in the history
This is what other implementations do and what the example in RFC 6455 uses.
  • Loading branch information
bauerj authored Jun 18, 2018
1 parent 378437a commit 702b6a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion websocketpp/processors/base.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ namespace processor {
namespace constants {

static char const upgrade_token[] = "websocket";
static char const connection_token[] = "upgrade";
static char const connection_token[] = "Upgrade";
static char const handshake_guid[] = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";

} // namespace constants
Expand Down

0 comments on commit 702b6a9

Please # to comment.