mirror of
https://github.com/boostorg/beast.git
synced 2025-07-30 21:07:26 +02:00
@ -1,3 +1,7 @@
|
|||||||
|
* Remove incorrect ASSERT in WebSocket read.
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
Version 335:
|
Version 335:
|
||||||
|
|
||||||
* Reduce size of multi_buffer.
|
* Reduce size of multi_buffer.
|
||||||
|
@ -123,7 +123,11 @@ public:
|
|||||||
BOOST_ASSERT(!ec);
|
BOOST_ASSERT(!ec);
|
||||||
if(impl.check_stop_now(ec))
|
if(impl.check_stop_now(ec))
|
||||||
{
|
{
|
||||||
BOOST_ASSERT(ec == net::error::operation_aborted);
|
// Issue 2264 - There is no guarantee that the next
|
||||||
|
// error will be operation_aborted.
|
||||||
|
// The error could be a result of the peer resetting the
|
||||||
|
// connection
|
||||||
|
// BOOST_ASSERT(ec == net::error::operation_aborted);
|
||||||
goto upcall;
|
goto upcall;
|
||||||
}
|
}
|
||||||
// VFALCO Should never get here
|
// VFALCO Should never get here
|
||||||
|
Reference in New Issue
Block a user