12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- #ifndef BOOST_BEAST_WEBSOCKET_SSL_HPP
- #define BOOST_BEAST_WEBSOCKET_SSL_HPP
- #include <boost/beast/core/detail/config.hpp>
- #include <boost/beast/websocket/teardown.hpp>
- #include <boost/asio/ip/tcp.hpp>
- #include <boost/asio/ssl/stream.hpp>
- namespace boost {
- namespace beast {
- template<class SyncStream>
- void
- teardown(
- role_type role,
- net::ssl::stream<SyncStream>& stream,
- error_code& ec);
- template<class AsyncStream, class TeardownHandler>
- void
- async_teardown(
- role_type role,
- net::ssl::stream<AsyncStream>& stream,
- TeardownHandler&& handler);
- }
- }
- #include <boost/beast/websocket/impl/ssl.hpp>
- #endif
|