Remove deprecated lowest_layer from test::stream.

refs #1934
This commit is contained in:
Richard Hodges
2020-06-02 13:04:23 +02:00
parent 60d4b54ec7
commit 3fb693eda6
2 changed files with 1 additions and 21 deletions

View File

@ -1,3 +1,4 @@
* Remove deprecated lowest_layer from test::stream
* Remove handler_pointer (API Change)
* Remove websocket::role_type (API Change)
* Remove accept_ex and handshake_ex variants (API Change)

View File

@ -186,27 +186,6 @@ class stream
std::unique_ptr<read_op_base>&& op,
std::size_t buf_size);
#if ! BOOST_BEAST_DOXYGEN
// boost::asio::ssl::stream needs these
// DEPRECATED
template<class>
friend class boost::asio::ssl::stream;
// DEPRECATED
using lowest_layer_type = stream;
// DEPRECATED
lowest_layer_type&
lowest_layer() noexcept
{
return *this;
}
// DEPRECATED
lowest_layer_type const&
lowest_layer() const noexcept
{
return *this;
}
#endif
public:
using buffer_type = flat_buffer;