mirror of
https://github.com/boostorg/beast.git
synced 2025-07-29 20:37:31 +02:00
Fix uninitialized frame done
This commit is contained in:
12
CHANGELOG.md
12
CHANGELOG.md
@ -1,3 +1,15 @@
|
||||
Version 88:
|
||||
|
||||
* Update doc links in README.md
|
||||
* Refactor tests Jamfile
|
||||
* Don't use program_options
|
||||
|
||||
WebSocket:
|
||||
|
||||
* Fix uninitialized frame done
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
Version 87:
|
||||
|
||||
* Update appveyor for Boost branch
|
||||
|
@ -141,6 +141,7 @@ open(role_type role)
|
||||
rd_.cont = false;
|
||||
rd_.done = true;
|
||||
rd_.buf.consume(rd_.buf.size());
|
||||
rd_.fh.fin = false;
|
||||
rd_close_ = false;
|
||||
wr_close_ = false;
|
||||
wr_block_.reset();
|
||||
@ -197,6 +198,7 @@ reset()
|
||||
rd_.cont = false;
|
||||
rd_.done = true;
|
||||
rd_.buf.consume(rd_.buf.size());
|
||||
rd_.fh.fin = false;
|
||||
rd_close_ = false;
|
||||
wr_close_ = false;
|
||||
wr_.cont = false;
|
||||
|
Reference in New Issue
Block a user