123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- #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
|