mirror of
https://github.com/boostorg/beast.git
synced 2025-07-29 20:37:31 +02:00
Add handler tracking locations to tcp teardown
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
Version XXX:
|
||||
|
||||
* Add handler tracking locations to tcp teardown.
|
||||
* Eliminate spurious uninitialised variable warning in detect_ssl.
|
||||
* Add handler tracking locations to flat_stream.
|
||||
* Add handler tracking locations to detect_ssl.
|
||||
|
@ -89,7 +89,7 @@ public:
|
||||
{
|
||||
BOOST_ASIO_HANDLER_LOCATION((
|
||||
__FILE__, __LINE__,
|
||||
"websocket::ssl::teardown"
|
||||
"websocket::tcp::async_teardown"
|
||||
));
|
||||
|
||||
s_.async_wait(
|
||||
@ -121,8 +121,15 @@ public:
|
||||
if(! cont)
|
||||
{
|
||||
BOOST_ASIO_CORO_YIELD
|
||||
net::post(bind_front_handler(
|
||||
std::move(*this), ec));
|
||||
{
|
||||
BOOST_ASIO_HANDLER_LOCATION((
|
||||
__FILE__, __LINE__,
|
||||
"websocket::tcp::async_teardown"
|
||||
));
|
||||
|
||||
net::post(bind_front_handler(
|
||||
std::move(*this), ec));
|
||||
}
|
||||
}
|
||||
{
|
||||
error_code ignored;
|
||||
|
Reference in New Issue
Block a user