Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a snapshot of the develop branch, built from commit d7c8a7cf0d.
PrevUpHomeNext

SocketStream concept

SocketStream should meet the Stream requirements. Additionally, it should have a lowest_layer_type member type, and a lowest_layer member function, returning a lowest_layer_type&, following Asio's layered stream model. Additionally, lowest_layer_type should inherit from an instantiation of boost::asio::basic_stream_socket.

The types boost::asio::basic_stream_socket<Protocol, Executor> and boost::asio::ssl::stream<boost::asio::basic_stream_socket<Protocol, Executor>> meet these requirements.


PrevUpHomeNext