...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Construct a basic_stream_socket
without opening
it.
explicit basic_stream_socket( boost::asio::io_service & io_service); » more...
Construct and open a basic_stream_socket
.
basic_stream_socket( boost::asio::io_service & io_service, const protocol_type & protocol); » more...
Construct a basic_stream_socket
, opening it
and binding it to the given local endpoint.
basic_stream_socket( boost::asio::io_service & io_service, const endpoint_type & endpoint); » more...
Construct a basic_stream_socket
on an existing
native socket.
basic_stream_socket( boost::asio::io_service & io_service, const protocol_type & protocol, const native_handle_type & native_socket); » more...
Move-construct a basic_stream_socket
from another.
basic_stream_socket( basic_stream_socket && other); » more...