mirror of
https://github.com/boostorg/beast.git
synced 2025-07-31 13:27:33 +02:00
10
CHANGELOG.md
10
CHANGELOG.md
@@ -1,5 +1,6 @@
|
|||||||
Version XXX:
|
Version XXX:
|
||||||
|
|
||||||
|
* Websocket SSL `teardown` also tears down underlying TCP.
|
||||||
* Update WebSocket examples to set TLS SNI.
|
* Update WebSocket examples to set TLS SNI.
|
||||||
* Add handler tracking locations to websocket.
|
* Add handler tracking locations to websocket.
|
||||||
* Add handler tracking locations to tcp teardown.
|
* Add handler tracking locations to tcp teardown.
|
||||||
@@ -10,6 +11,15 @@ Version XXX:
|
|||||||
* Add handler tracking locations to basic_stream.
|
* Add handler tracking locations to basic_stream.
|
||||||
* Add handler tracking locations to http operations.
|
* Add handler tracking locations to http operations.
|
||||||
|
|
||||||
|
API Changes:
|
||||||
|
|
||||||
|
* Previously, `teardown` and `async_teardown` of a websocket connection over SSL
|
||||||
|
would only shut down the SSL layer, leaving the TCP layer connected. Now the
|
||||||
|
SSL teardown will tear down both the SSL and TCP layers, cleanly shutting down
|
||||||
|
the TCP connection and closing the socket.
|
||||||
|
Should the client expect the TCP socket to remain connected, users will need to
|
||||||
|
re-engineer their code.
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
Version 300:
|
Version 300:
|
||||||
|
@@ -11,6 +11,9 @@
|
|||||||
#define BOOST_BEAST_WEBSOCKET_IMPL_SSL_HPP
|
#define BOOST_BEAST_WEBSOCKET_IMPL_SSL_HPP
|
||||||
|
|
||||||
#include <utility>
|
#include <utility>
|
||||||
|
#include <boost/beast/websocket/teardown.hpp>
|
||||||
|
#include <boost/asio/compose.hpp>
|
||||||
|
#include <boost/asio/coroutine.hpp>
|
||||||
|
|
||||||
namespace boost {
|
namespace boost {
|
||||||
namespace beast {
|
namespace beast {
|
||||||
@@ -33,24 +36,71 @@ namespace beast {
|
|||||||
template<class AsyncStream>
|
template<class AsyncStream>
|
||||||
void
|
void
|
||||||
teardown(
|
teardown(
|
||||||
role_type,
|
role_type role,
|
||||||
net::ssl::stream<AsyncStream>& stream,
|
boost::asio::ssl::stream<AsyncStream>& stream,
|
||||||
error_code& ec)
|
error_code& ec)
|
||||||
{
|
{
|
||||||
stream.shutdown(ec);
|
stream.shutdown(ec);
|
||||||
|
using boost::beast::websocket::teardown;
|
||||||
|
error_code ec2;
|
||||||
|
teardown(role, stream.next_layer(), ec ? ec2 : ec);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace detail {
|
||||||
|
|
||||||
|
template<class AsyncStream>
|
||||||
|
struct ssl_shutdown_op
|
||||||
|
: boost::asio::coroutine
|
||||||
|
{
|
||||||
|
ssl_shutdown_op(
|
||||||
|
boost::asio::ssl::stream<AsyncStream>& s,
|
||||||
|
role_type role)
|
||||||
|
: s_(s)
|
||||||
|
, role_(role)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
template<class Self>
|
||||||
|
void
|
||||||
|
operator()(Self& self, error_code ec = {}, std::size_t bytes_transferred = 0)
|
||||||
|
{
|
||||||
|
BOOST_ASIO_CORO_REENTER(*this)
|
||||||
|
{
|
||||||
|
BOOST_ASIO_CORO_YIELD
|
||||||
|
s_.async_shutdown(std::move(self));
|
||||||
|
ec_ = ec;
|
||||||
|
|
||||||
|
using boost::beast::websocket::async_teardown;
|
||||||
|
BOOST_ASIO_CORO_YIELD
|
||||||
|
async_teardown(role_, s_.next_layer(), std::move(self));
|
||||||
|
if (!ec_)
|
||||||
|
ec_ = ec;
|
||||||
|
|
||||||
|
self.complete(ec_);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
boost::asio::ssl::stream<AsyncStream>& s_;
|
||||||
|
role_type role_;
|
||||||
|
error_code ec_;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // detail
|
||||||
|
|
||||||
template<
|
template<
|
||||||
class AsyncStream,
|
class AsyncStream,
|
||||||
class TeardownHandler>
|
class TeardownHandler>
|
||||||
void
|
void
|
||||||
async_teardown(
|
async_teardown(
|
||||||
role_type,
|
role_type role,
|
||||||
net::ssl::stream<AsyncStream>& stream,
|
boost::asio::ssl::stream<AsyncStream>& stream,
|
||||||
TeardownHandler&& handler)
|
TeardownHandler&& handler)
|
||||||
{
|
{
|
||||||
stream.async_shutdown(
|
return boost::asio::async_compose<TeardownHandler, void(error_code)>(
|
||||||
std::forward<TeardownHandler>(handler));
|
detail::ssl_shutdown_op<AsyncStream>(stream, role),
|
||||||
|
handler,
|
||||||
|
stream);
|
||||||
}
|
}
|
||||||
|
|
||||||
} // beast
|
} // beast
|
||||||
|
Reference in New Issue
Block a user