mirror of
https://github.com/boostorg/beast.git
synced 2025-08-02 14:24:31 +02:00
@@ -1,3 +1,9 @@
|
|||||||
|
Version 194:
|
||||||
|
|
||||||
|
* http::async_read returns the right byte count on error
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
Version 193:
|
Version 193:
|
||||||
|
|
||||||
* Update ssl_stream signatures for networking changes
|
* Update ssl_stream signatures for networking changes
|
||||||
|
@@ -313,9 +313,9 @@ operator()(
|
|||||||
BOOST_ASIO_CORO_YIELD
|
BOOST_ASIO_CORO_YIELD
|
||||||
async_read_some(
|
async_read_some(
|
||||||
s_, b_, p_, std::move(*this));
|
s_, b_, p_, std::move(*this));
|
||||||
|
bytes_transferred_ += bytes_transferred;
|
||||||
if(ec)
|
if(ec)
|
||||||
goto upcall;
|
goto upcall;
|
||||||
bytes_transferred_ += bytes_transferred;
|
|
||||||
if(Condition{}(p_))
|
if(Condition{}(p_))
|
||||||
goto upcall;
|
goto upcall;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user