mirror of
https://github.com/boostorg/beast.git
synced 2025-07-30 12:57:31 +02:00
Fine tune websocket asserts
This commit is contained in:
@ -3,6 +3,10 @@ Version 71:
|
|||||||
* Fix extra ; warning
|
* Fix extra ; warning
|
||||||
* Documentation revision
|
* Documentation revision
|
||||||
|
|
||||||
|
WebSockets:
|
||||||
|
|
||||||
|
* Fine tune websocket op asserts
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
Version 70:
|
Version 70:
|
||||||
|
@ -192,8 +192,8 @@ operator()(error_code ec, bool again)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
upcall:
|
upcall:
|
||||||
if(d.ws.wr_block_ == &d)
|
BOOST_ASSERT(d.ws.wr_block_ == &d);
|
||||||
d.ws.wr_block_ = nullptr;
|
d.ws.wr_block_ = nullptr;
|
||||||
d.ws.rd_op_.maybe_invoke() ||
|
d.ws.rd_op_.maybe_invoke() ||
|
||||||
d.ws.wr_op_.maybe_invoke();
|
d.ws.wr_op_.maybe_invoke();
|
||||||
d_.invoke(ec);
|
d_.invoke(ec);
|
||||||
|
Reference in New Issue
Block a user