Fix response message type in async websocket accept

This commit is contained in:
Vinnie Falco
2017-06-16 15:49:06 -07:00
parent b5306a5712
commit e856c46864
2 changed files with 2 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
Version 60:
* String comparisons are public interfaces
* Fix response message type in async websocket accept
--------------------------------------------------------------------------------

View File

@@ -39,7 +39,7 @@ class stream<NextLayer>::response_op
{
bool cont;
stream<NextLayer>& ws;
http::response<http::empty_body> res;
response_type res;
int state = 0;
template<class Fields, class Decorator>