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 an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

basic_seq_packet_socket::basic_seq_packet_socket

Construct a basic_seq_packet_socket without opening it.

explicit basic_seq_packet_socket(
    boost::asio::io_context & io_context);
  » more...

Construct and open a basic_seq_packet_socket.

basic_seq_packet_socket(
    boost::asio::io_context & io_context,
    const protocol_type & protocol);
  » more...

Construct a basic_seq_packet_socket, opening it and binding it to the given local endpoint.

basic_seq_packet_socket(
    boost::asio::io_context & io_context,
    const endpoint_type & endpoint);
  » more...

Construct a basic_seq_packet_socket on an existing native socket.

basic_seq_packet_socket(
    boost::asio::io_context & io_context,
    const protocol_type & protocol,
    const native_handle_type & native_socket);
  » more...

Move-construct a basic_seq_packet_socket from another.

basic_seq_packet_socket(
    basic_seq_packet_socket && other);
  » more...

Move-construct a basic_seq_packet_socket from a socket of another protocol type.

template<
    typename Protocol1>
basic_seq_packet_socket(
    basic_seq_packet_socket< Protocol1 > && other,
    typename enable_if< is_convertible< Protocol1, Protocol >::value >::type *  = 0);
  » more...

PrevUpHomeNext