mirror of
https://github.com/boostorg/beast.git
synced 2025-07-31 13:27:33 +02:00
committed by
Richard Hodges
parent
e7c677effe
commit
b07edea9d7
@ -1,5 +1,6 @@
|
|||||||
Version XXX:
|
Version XXX:
|
||||||
|
|
||||||
|
* Fix logic error in advance_server_flex.
|
||||||
* Fix file open with append_existing flag on posix.
|
* Fix file open with append_existing flag on posix.
|
||||||
* Websocket SSL `teardown` also tears down underlying TCP.
|
* Websocket SSL `teardown` also tears down underlying TCP.
|
||||||
* Update WebSocket examples to set TLS SNI.
|
* Update WebSocket examples to set TLS SNI.
|
||||||
|
@ -321,7 +321,7 @@ class websocket_session
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
if(ec)
|
if(ec)
|
||||||
fail(ec, "read");
|
return fail(ec, "read");
|
||||||
|
|
||||||
// Echo the message
|
// Echo the message
|
||||||
derived().ws().text(derived().ws().got_text());
|
derived().ws().text(derived().ws().got_text());
|
||||||
|
Reference in New Issue
Block a user