Boost  v1.57.0
doxygen for www.boost.org
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService > Class Template Reference

Provides sequenced packet socket functionality. More...

#include <basic_seq_packet_socket.hpp>

Inheritance diagram for boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >:
Collaboration diagram for boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >:

Public Types

typedef
SeqPacketSocketService::native_handle_type 
native_type
 (Deprecated: Use native_handle_type.) The native representation of a socket. More...
 
typedef
SeqPacketSocketService::native_handle_type 
native_handle_type
 The native representation of a socket. More...
 
typedef Protocol protocol_type
 The protocol type. More...
 
typedef Protocol::endpoint endpoint_type
 The endpoint type. More...
 
typedef basic_socket< Protocol,
SeqPacketSocketService > 
lowest_layer_type
 A basic_socket is always the lowest layer. More...
 
typedef SeqPacketSocketService service_type
 The type of the service that will be used to provide I/O operations. More...
 
typedef
service_type::implementation_type 
implementation_type
 The underlying implementation type of I/O object. More...
 
enum  shutdown_type {
  shutdown_receive = BOOST_ASIO_OS_DEF(SHUT_RD),
  shutdown_send = BOOST_ASIO_OS_DEF(SHUT_WR),
  shutdown_both = BOOST_ASIO_OS_DEF(SHUT_RDWR)
}
 Different ways a socket may be shutdown. More...
 
typedef int message_flags
 Bitmask type for flags that can be passed to send and receive operations. More...
 
typedef
boost::asio::detail::socket_option::boolean
< BOOST_ASIO_OS_DEF(SOL_SOCKET),
BOOST_ASIO_OS_DEF(SO_BROADCAST)> 
broadcast
 Socket option to permit sending of broadcast messages. More...
 
typedef
boost::asio::detail::socket_option::boolean
< BOOST_ASIO_OS_DEF(SOL_SOCKET),
BOOST_ASIO_OS_DEF(SO_DEBUG)> 
debug
 Socket option to enable socket-level debugging. More...
 
typedef
boost::asio::detail::socket_option::boolean
< BOOST_ASIO_OS_DEF(SOL_SOCKET),
BOOST_ASIO_OS_DEF(SO_DONTROUTE)> 
do_not_route
 Socket option to prevent routing, use local interfaces only. More...
 
typedef
boost::asio::detail::socket_option::boolean
< BOOST_ASIO_OS_DEF(SOL_SOCKET),
BOOST_ASIO_OS_DEF(SO_KEEPALIVE)> 
keep_alive
 Socket option to send keep-alives. More...
 
typedef
boost::asio::detail::socket_option::integer
< BOOST_ASIO_OS_DEF(SOL_SOCKET),
BOOST_ASIO_OS_DEF(SO_SNDBUF)> 
send_buffer_size
 Socket option for the send buffer size of a socket. More...
 
typedef
boost::asio::detail::socket_option::integer
< BOOST_ASIO_OS_DEF(SOL_SOCKET),
BOOST_ASIO_OS_DEF(SO_SNDLOWAT)> 
send_low_watermark
 Socket option for the send low watermark. More...
 
typedef
boost::asio::detail::socket_option::integer
< BOOST_ASIO_OS_DEF(SOL_SOCKET),
BOOST_ASIO_OS_DEF(SO_RCVBUF)> 
receive_buffer_size
 Socket option for the receive buffer size of a socket. More...
 
typedef
boost::asio::detail::socket_option::integer
< BOOST_ASIO_OS_DEF(SOL_SOCKET),
BOOST_ASIO_OS_DEF(SO_RCVLOWAT)> 
receive_low_watermark
 Socket option for the receive low watermark. More...
 
typedef
boost::asio::detail::socket_option::boolean
< BOOST_ASIO_OS_DEF(SOL_SOCKET),
BOOST_ASIO_OS_DEF(SO_REUSEADDR)> 
reuse_address
 Socket option to allow the socket to be bound to an address that is already in use. More...
 
typedef
boost::asio::detail::socket_option::linger
< BOOST_ASIO_OS_DEF(SOL_SOCKET),
BOOST_ASIO_OS_DEF(SO_LINGER)> 
linger
 Socket option to specify whether the socket lingers on close if unsent data is present. More...
 
typedef
boost::asio::detail::socket_option::boolean
< boost::asio::detail::custom_socket_option_level,
boost::asio::detail::enable_connection_aborted_option > 
enable_connection_aborted
 Socket option to report aborted connections on accept. More...
 
typedef
boost::asio::detail::io_control::non_blocking_io 
non_blocking_io
 (Deprecated: Use non_blocking().) IO control command to set the blocking mode of the socket. More...
 
typedef
boost::asio::detail::io_control::bytes_readable 
bytes_readable
 IO control command to get the amount of data that can be read without blocking. More...
 

Public Member Functions

 basic_seq_packet_socket (boost::asio::io_service &io_service)
 Construct a basic_seq_packet_socket without opening it. More...
 
 basic_seq_packet_socket (boost::asio::io_service &io_service, const protocol_type &protocol)
 Construct and open a basic_seq_packet_socket. More...
 
 basic_seq_packet_socket (boost::asio::io_service &io_service, const endpoint_type &endpoint)
 Construct a basic_seq_packet_socket, opening it and binding it to the given local endpoint. More...
 
 basic_seq_packet_socket (boost::asio::io_service &io_service, const protocol_type &protocol, const native_handle_type &native_socket)
 Construct a basic_seq_packet_socket on an existing native socket. More...
 
template<typename ConstBufferSequence >
std::size_t send (const ConstBufferSequence &buffers, socket_base::message_flags flags)
 Send some data on the socket. More...
 
template<typename ConstBufferSequence >
std::size_t send (const ConstBufferSequence &buffers, socket_base::message_flags flags, boost::system::error_code &ec)
 Send some data on the socket. More...
 
template<typename ConstBufferSequence , typename WriteHandler >
 BOOST_ASIO_INITFN_RESULT_TYPE (WriteHandler, void(boost::system::error_code, std::size_t)) async_send(const ConstBufferSequence &buffers
 Start an asynchronous send. More...
 
socket_base::message_flags BOOST_ASIO_MOVE_ARG (WriteHandler) handler)
 
template<typename MutableBufferSequence >
std::size_t receive (const MutableBufferSequence &buffers, socket_base::message_flags &out_flags)
 Receive some data on the socket. More...
 
template<typename MutableBufferSequence >
std::size_t receive (const MutableBufferSequence &buffers, socket_base::message_flags in_flags, socket_base::message_flags &out_flags)
 Receive some data on the socket. More...
 
template<typename MutableBufferSequence >
std::size_t receive (const MutableBufferSequence &buffers, socket_base::message_flags in_flags, socket_base::message_flags &out_flags, boost::system::error_code &ec)
 Receive some data on a connected socket. More...
 
template<typename MutableBufferSequence , typename ReadHandler >
 BOOST_ASIO_INITFN_RESULT_TYPE (ReadHandler, void(boost::system::error_code, std::size_t)) async_receive(const MutableBufferSequence &buffers
 Start an asynchronous receive. More...
 
socket_base::message_flags BOOST_ASIO_MOVE_ARG (ReadHandler) handler)
 
template<typename MutableBufferSequence , typename ReadHandler >
 BOOST_ASIO_INITFN_RESULT_TYPE (ReadHandler, void(boost::system::error_code, std::size_t)) async_receive(const MutableBufferSequence &buffers
 Start an asynchronous receive. More...
 
socket_base::message_flags
socket_base::message_flags 
BOOST_ASIO_MOVE_ARG (ReadHandler) handler)
 
lowest_layer_typelowest_layer ()
 Get a reference to the lowest layer. More...
 
const lowest_layer_typelowest_layer () const
 Get a const reference to the lowest layer. More...
 
void open (const protocol_type &protocol=protocol_type())
 Open the socket using the specified protocol. More...
 
boost::system::error_code open (const protocol_type &protocol, boost::system::error_code &ec)
 Open the socket using the specified protocol. More...
 
void assign (const protocol_type &protocol, const native_handle_type &native_socket)
 Assign an existing native socket to the socket. More...
 
boost::system::error_code assign (const protocol_type &protocol, const native_handle_type &native_socket, boost::system::error_code &ec)
 Assign an existing native socket to the socket. More...
 
bool is_open () const
 Determine whether the socket is open. More...
 
void close ()
 Close the socket. More...
 
boost::system::error_code close (boost::system::error_code &ec)
 Close the socket. More...
 
native_type native ()
 (Deprecated: Use native_handle().) Get the native socket representation. More...
 
native_handle_type native_handle ()
 Get the native socket representation. More...
 
void cancel ()
 Cancel all asynchronous operations associated with the socket. More...
 
boost::system::error_code cancel (boost::system::error_code &ec)
 Cancel all asynchronous operations associated with the socket. More...
 
bool at_mark () const
 Determine whether the socket is at the out-of-band data mark. More...
 
bool at_mark (boost::system::error_code &ec) const
 Determine whether the socket is at the out-of-band data mark. More...
 
std::size_t available () const
 Determine the number of bytes available for reading. More...
 
std::size_t available (boost::system::error_code &ec) const
 Determine the number of bytes available for reading. More...
 
void bind (const endpoint_type &endpoint)
 Bind the socket to the given local endpoint. More...
 
boost::system::error_code bind (const endpoint_type &endpoint, boost::system::error_code &ec)
 Bind the socket to the given local endpoint. More...
 
void connect (const endpoint_type &peer_endpoint)
 Connect the socket to the specified endpoint. More...
 
boost::system::error_code connect (const endpoint_type &peer_endpoint, boost::system::error_code &ec)
 Connect the socket to the specified endpoint. More...
 
 BOOST_ASIO_INITFN_RESULT_TYPE (ConnectHandler, void(boost::system::error_code)) async_connect(const endpoint_type &peer_endpoint
 Start an asynchronous connect. More...
 
 BOOST_ASIO_MOVE_ARG (ConnectHandler) handler)
 
void set_option (const SettableSocketOption &option)
 Set an option on the socket. More...
 
boost::system::error_code set_option (const SettableSocketOption &option, boost::system::error_code &ec)
 Set an option on the socket. More...
 
void get_option (GettableSocketOption &option) const
 Get an option from the socket. More...
 
boost::system::error_code get_option (GettableSocketOption &option, boost::system::error_code &ec) const
 Get an option from the socket. More...
 
void io_control (IoControlCommand &command)
 Perform an IO control command on the socket. More...
 
boost::system::error_code io_control (IoControlCommand &command, boost::system::error_code &ec)
 Perform an IO control command on the socket. More...
 
bool non_blocking () const
 Gets the non-blocking mode of the socket. More...
 
void non_blocking (bool mode)
 Sets the non-blocking mode of the socket. More...
 
boost::system::error_code non_blocking (bool mode, boost::system::error_code &ec)
 Sets the non-blocking mode of the socket. More...
 
bool native_non_blocking () const
 Gets the non-blocking mode of the native socket implementation. More...
 
void native_non_blocking (bool mode)
 Sets the non-blocking mode of the native socket implementation. More...
 
boost::system::error_code native_non_blocking (bool mode, boost::system::error_code &ec)
 Sets the non-blocking mode of the native socket implementation. More...
 
endpoint_type local_endpoint () const
 Get the local endpoint of the socket. More...
 
endpoint_type local_endpoint (boost::system::error_code &ec) const
 Get the local endpoint of the socket. More...
 
endpoint_type remote_endpoint () const
 Get the remote endpoint of the socket. More...
 
endpoint_type remote_endpoint (boost::system::error_code &ec) const
 Get the remote endpoint of the socket. More...
 
void shutdown (shutdown_type what)
 Disable sends or receives on the socket. More...
 
boost::system::error_code shutdown (shutdown_type what, boost::system::error_code &ec)
 Disable sends or receives on the socket. More...
 
boost::asio::io_serviceget_io_service ()
 Get the io_service associated with the object. More...
 
 BOOST_ASIO_STATIC_CONSTANT (int, message_peek=BOOST_ASIO_OS_DEF(MSG_PEEK))
 
 BOOST_ASIO_STATIC_CONSTANT (int, message_out_of_band=BOOST_ASIO_OS_DEF(MSG_OOB))
 
 BOOST_ASIO_STATIC_CONSTANT (int, message_do_not_route=BOOST_ASIO_OS_DEF(MSG_DONTROUTE))
 
 BOOST_ASIO_STATIC_CONSTANT (int, message_end_of_record=BOOST_ASIO_OS_DEF(MSG_EOR))
 
 BOOST_ASIO_STATIC_CONSTANT (int, max_connections=BOOST_ASIO_OS_DEF(SOMAXCONN))
 The maximum length of the queue of pending incoming connections. More...
 

Public Attributes

socket_base::message_flags flags
 
socket_base::message_flagsout_flags
 
socket_base::message_flags in_flags
 
socket_base::message_flags
socket_base::message_flags
out_flags
 

Protected Member Functions

service_typeget_service ()
 Get the service associated with the I/O object. More...
 
const service_typeget_service () const
 Get the service associated with the I/O object. More...
 
implementation_typeget_implementation ()
 Get the underlying implementation of the I/O object. More...
 
const implementation_typeget_implementation () const
 Get the underlying implementation of the I/O object. More...
 

Protected Attributes

service_typeservice
 (Deprecated: Use get_service().) The service associated with the I/O object. More...
 
implementation_type implementation
 (Deprecated: Use get_implementation().) The underlying implementation of the I/O object. More...
 

Detailed Description

template<typename Protocol, typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
class boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >

Provides sequenced packet socket functionality.

The basic_seq_packet_socket class template provides asynchronous and blocking sequenced packet socket functionality.

Thread Safety
Distinct objects: Safe.
Shared objects: Unsafe.

Member Typedef Documentation

typedef boost::asio::detail::socket_option::boolean< BOOST_ASIO_OS_DEF(SOL_SOCKET), BOOST_ASIO_OS_DEF(SO_BROADCAST)> boost::asio::socket_base::broadcast
inherited

Socket option to permit sending of broadcast messages.

Implements the SOL_SOCKET/SO_BROADCAST socket option.

Examples
Setting the option:
boost::asio::ip::udp::socket socket(io_service);
...
boost::asio::socket_base::broadcast option(true);
socket.set_option(option);
Getting the current option value:
boost::asio::ip::udp::socket socket(io_service);
...
boost::asio::socket_base::broadcast option;
socket.get_option(option);
bool is_set = option.value();
Concepts:
Socket_Option, Boolean_Socket_Option.
typedef boost::asio::detail::io_control::bytes_readable boost::asio::socket_base::bytes_readable
inherited

IO control command to get the amount of data that can be read without blocking.

Implements the FIONREAD IO control command.

Example
boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::socket_base::bytes_readable command(true);
socket.io_control(command);
std::size_t bytes_readable = command.get();
Concepts:
IO_Control_Command, Size_IO_Control_Command.
typedef boost::asio::detail::socket_option::boolean< BOOST_ASIO_OS_DEF(SOL_SOCKET), BOOST_ASIO_OS_DEF(SO_DEBUG)> boost::asio::socket_base::debug
inherited

Socket option to enable socket-level debugging.

Implements the SOL_SOCKET/SO_DEBUG socket option.

Examples
Setting the option:
boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::socket_base::debug option(true);
socket.set_option(option);
Getting the current option value:
boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::socket_base::debug option;
socket.get_option(option);
bool is_set = option.value();
Concepts:
Socket_Option, Boolean_Socket_Option.
typedef boost::asio::detail::socket_option::boolean< BOOST_ASIO_OS_DEF(SOL_SOCKET), BOOST_ASIO_OS_DEF(SO_DONTROUTE)> boost::asio::socket_base::do_not_route
inherited

Socket option to prevent routing, use local interfaces only.

Implements the SOL_SOCKET/SO_DONTROUTE socket option.

Examples
Setting the option:
boost::asio::ip::udp::socket socket(io_service);
...
boost::asio::socket_base::do_not_route option(true);
socket.set_option(option);
Getting the current option value:
boost::asio::ip::udp::socket socket(io_service);
...
boost::asio::socket_base::do_not_route option;
socket.get_option(option);
bool is_set = option.value();
Concepts:
Socket_Option, Boolean_Socket_Option.
typedef boost::asio::detail::socket_option::boolean< boost::asio::detail::custom_socket_option_level, boost::asio::detail::enable_connection_aborted_option> boost::asio::socket_base::enable_connection_aborted
inherited

Socket option to report aborted connections on accept.

Implements a custom socket option that determines whether or not an accept operation is permitted to fail with boost::asio::error::connection_aborted. By default the option is false.

Examples
Setting the option:
boost::asio::ip::tcp::acceptor acceptor(io_service);
...
boost::asio::socket_base::enable_connection_aborted option(true);
acceptor.set_option(option);
Getting the current option value:
boost::asio::ip::tcp::acceptor acceptor(io_service);
...
boost::asio::socket_base::enable_connection_aborted option;
acceptor.get_option(option);
bool is_set = option.value();
Concepts:
Socket_Option, Boolean_Socket_Option.
template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
typedef Protocol::endpoint boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::endpoint_type

The endpoint type.

typedef service_type::implementation_type boost::asio::basic_io_object< SeqPacketSocketService >::implementation_type
inherited

The underlying implementation type of I/O object.

typedef boost::asio::detail::socket_option::boolean< BOOST_ASIO_OS_DEF(SOL_SOCKET), BOOST_ASIO_OS_DEF(SO_KEEPALIVE)> boost::asio::socket_base::keep_alive
inherited

Socket option to send keep-alives.

Implements the SOL_SOCKET/SO_KEEPALIVE socket option.

Examples
Setting the option:
boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::socket_base::keep_alive option(true);
socket.set_option(option);
Getting the current option value:
boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::socket_base::keep_alive option;
socket.get_option(option);
bool is_set = option.value();
Concepts:
Socket_Option, Boolean_Socket_Option.
typedef boost::asio::detail::socket_option::linger< BOOST_ASIO_OS_DEF(SOL_SOCKET), BOOST_ASIO_OS_DEF(SO_LINGER)> boost::asio::socket_base::linger
inherited

Socket option to specify whether the socket lingers on close if unsent data is present.

Implements the SOL_SOCKET/SO_LINGER socket option.

Examples
Setting the option:
boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::socket_base::linger option(true, 30);
socket.set_option(option);
Getting the current option value:
boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::socket_base::linger option;
socket.get_option(option);
bool is_set = option.enabled();
unsigned short timeout = option.timeout();
Concepts:
Socket_Option, Linger_Socket_Option.
typedef basic_socket<Protocol, SeqPacketSocketService > boost::asio::basic_socket< Protocol, SeqPacketSocketService >::lowest_layer_type
inherited

A basic_socket is always the lowest layer.

Bitmask type for flags that can be passed to send and receive operations.

template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
typedef SeqPacketSocketService::native_handle_type boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::native_handle_type

The native representation of a socket.

template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
typedef SeqPacketSocketService::native_handle_type boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::native_type

(Deprecated: Use native_handle_type.) The native representation of a socket.

typedef boost::asio::detail::io_control::non_blocking_io boost::asio::socket_base::non_blocking_io
inherited

(Deprecated: Use non_blocking().) IO control command to set the blocking mode of the socket.

Implements the FIONBIO IO control command.

Example
boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::socket_base::non_blocking_io command(true);
socket.io_control(command);
Concepts:
IO_Control_Command, Boolean_IO_Control_Command.
template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
typedef Protocol boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::protocol_type

The protocol type.

typedef boost::asio::detail::socket_option::integer< BOOST_ASIO_OS_DEF(SOL_SOCKET), BOOST_ASIO_OS_DEF(SO_RCVBUF)> boost::asio::socket_base::receive_buffer_size
inherited

Socket option for the receive buffer size of a socket.

Implements the SOL_SOCKET/SO_RCVBUF socket option.

Examples
Setting the option:
boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::socket_base::receive_buffer_size option(8192);
socket.set_option(option);
Getting the current option value:
boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::socket_base::receive_buffer_size option;
socket.get_option(option);
int size = option.value();
Concepts:
Socket_Option, Integer_Socket_Option.
typedef boost::asio::detail::socket_option::integer< BOOST_ASIO_OS_DEF(SOL_SOCKET), BOOST_ASIO_OS_DEF(SO_RCVLOWAT)> boost::asio::socket_base::receive_low_watermark
inherited

Socket option for the receive low watermark.

Implements the SOL_SOCKET/SO_RCVLOWAT socket option.

Examples
Setting the option:
boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::socket_base::receive_low_watermark option(1024);
socket.set_option(option);
Getting the current option value:
boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::socket_base::receive_low_watermark option;
socket.get_option(option);
int size = option.value();
Concepts:
Socket_Option, Integer_Socket_Option.
typedef boost::asio::detail::socket_option::boolean< BOOST_ASIO_OS_DEF(SOL_SOCKET), BOOST_ASIO_OS_DEF(SO_REUSEADDR)> boost::asio::socket_base::reuse_address
inherited

Socket option to allow the socket to be bound to an address that is already in use.

Implements the SOL_SOCKET/SO_REUSEADDR socket option.

Examples
Setting the option:
boost::asio::ip::tcp::acceptor acceptor(io_service);
...
boost::asio::socket_base::reuse_address option(true);
acceptor.set_option(option);
Getting the current option value:
boost::asio::ip::tcp::acceptor acceptor(io_service);
...
boost::asio::socket_base::reuse_address option;
acceptor.get_option(option);
bool is_set = option.value();
Concepts:
Socket_Option, Boolean_Socket_Option.
typedef boost::asio::detail::socket_option::integer< BOOST_ASIO_OS_DEF(SOL_SOCKET), BOOST_ASIO_OS_DEF(SO_SNDBUF)> boost::asio::socket_base::send_buffer_size
inherited

Socket option for the send buffer size of a socket.

Implements the SOL_SOCKET/SO_SNDBUF socket option.

Examples
Setting the option:
boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::socket_base::send_buffer_size option(8192);
socket.set_option(option);
Getting the current option value:
boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::socket_base::send_buffer_size option;
socket.get_option(option);
int size = option.value();
Concepts:
Socket_Option, Integer_Socket_Option.
typedef boost::asio::detail::socket_option::integer< BOOST_ASIO_OS_DEF(SOL_SOCKET), BOOST_ASIO_OS_DEF(SO_SNDLOWAT)> boost::asio::socket_base::send_low_watermark
inherited

Socket option for the send low watermark.

Implements the SOL_SOCKET/SO_SNDLOWAT socket option.

Examples
Setting the option:
boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::socket_base::send_low_watermark option(1024);
socket.set_option(option);
Getting the current option value:
boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::socket_base::send_low_watermark option;
socket.get_option(option);
int size = option.value();
Concepts:
Socket_Option, Integer_Socket_Option.
typedef SeqPacketSocketService boost::asio::basic_io_object< SeqPacketSocketService >::service_type
inherited

The type of the service that will be used to provide I/O operations.

Member Enumeration Documentation

Different ways a socket may be shutdown.

Enumerator
shutdown_receive 
shutdown_send 
shutdown_both 

Constructor & Destructor Documentation

template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::basic_seq_packet_socket ( boost::asio::io_service io_service)
inlineexplicit

Construct a basic_seq_packet_socket without opening it.

This constructor creates a sequenced packet socket without opening it. The socket needs to be opened and then connected or accepted before data can be sent or received on it.

Parameters
io_serviceThe io_service object that the sequenced packet socket will use to dispatch handlers for any asynchronous operations performed on the socket.
template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::basic_seq_packet_socket ( boost::asio::io_service io_service,
const protocol_type protocol 
)
inline

Construct and open a basic_seq_packet_socket.

This constructor creates and opens a sequenced_packet socket. The socket needs to be connected or accepted before data can be sent or received on it.

Parameters
io_serviceThe io_service object that the sequenced packet socket will use to dispatch handlers for any asynchronous operations performed on the socket.
protocolAn object specifying protocol parameters to be used.
Exceptions
boost::system::system_errorThrown on failure.
template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::basic_seq_packet_socket ( boost::asio::io_service io_service,
const endpoint_type endpoint 
)
inline

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

This constructor creates a sequenced packet socket and automatically opens it bound to the specified endpoint on the local machine. The protocol used is the protocol associated with the given endpoint.

Parameters
io_serviceThe io_service object that the sequenced packet socket will use to dispatch handlers for any asynchronous operations performed on the socket.
endpointAn endpoint on the local machine to which the sequenced packet socket will be bound.
Exceptions
boost::system::system_errorThrown on failure.
template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::basic_seq_packet_socket ( boost::asio::io_service io_service,
const protocol_type protocol,
const native_handle_type native_socket 
)
inline

Construct a basic_seq_packet_socket on an existing native socket.

This constructor creates a sequenced packet socket object to hold an existing native socket.

Parameters
io_serviceThe io_service object that the sequenced packet socket will use to dispatch handlers for any asynchronous operations performed on the socket.
protocolAn object specifying protocol parameters to be used.
native_socketThe new underlying socket implementation.
Exceptions
boost::system::system_errorThrown on failure.

Member Function Documentation

void boost::asio::basic_socket< Protocol, SeqPacketSocketService >::assign ( const protocol_type protocol,
const native_handle_type native_socket 
)
inlineinherited

Assign an existing native socket to the socket.

boost::system::error_code boost::asio::basic_socket< Protocol, SeqPacketSocketService >::assign ( const protocol_type protocol,
const native_handle_type native_socket,
boost::system::error_code ec 
)
inlineinherited

Assign an existing native socket to the socket.

bool boost::asio::basic_socket< Protocol, SeqPacketSocketService >::at_mark ( ) const
inlineinherited

Determine whether the socket is at the out-of-band data mark.

This function is used to check whether the socket input is currently positioned at the out-of-band data mark.

Returns
A bool indicating whether the socket is at the out-of-band data mark.
Exceptions
boost::system::system_errorThrown on failure.
bool boost::asio::basic_socket< Protocol, SeqPacketSocketService >::at_mark ( boost::system::error_code ec) const
inlineinherited

Determine whether the socket is at the out-of-band data mark.

This function is used to check whether the socket input is currently positioned at the out-of-band data mark.

Parameters
ecSet to indicate what error occurred, if any.
Returns
A bool indicating whether the socket is at the out-of-band data mark.
std::size_t boost::asio::basic_socket< Protocol, SeqPacketSocketService >::available ( ) const
inlineinherited

Determine the number of bytes available for reading.

This function is used to determine the number of bytes that may be read without blocking.

Returns
The number of bytes that may be read without blocking, or 0 if an error occurs.
Exceptions
boost::system::system_errorThrown on failure.
std::size_t boost::asio::basic_socket< Protocol, SeqPacketSocketService >::available ( boost::system::error_code ec) const
inlineinherited

Determine the number of bytes available for reading.

This function is used to determine the number of bytes that may be read without blocking.

Parameters
ecSet to indicate what error occurred, if any.
Returns
The number of bytes that may be read without blocking, or 0 if an error occurs.
void boost::asio::basic_socket< Protocol, SeqPacketSocketService >::bind ( const endpoint_type endpoint)
inlineinherited

Bind the socket to the given local endpoint.

This function binds the socket to the specified endpoint on the local machine.

Parameters
endpointAn endpoint on the local machine to which the socket will be bound.
Exceptions
boost::system::system_errorThrown on failure.
Example
boost::system::error_code boost::asio::basic_socket< Protocol, SeqPacketSocketService >::bind ( const endpoint_type endpoint,
boost::system::error_code ec 
)
inlineinherited

Bind the socket to the given local endpoint.

This function binds the socket to the specified endpoint on the local machine.

Parameters
endpointAn endpoint on the local machine to which the socket will be bound.
ecSet to indicate what error occurred, if any.
Example
boost::asio::ip::tcp::socket socket(io_service);
socket.open(boost::asio::ip::tcp::v4());
boost::asio::ip::tcp::v4(), 12345), ec);
if (ec)
{
// An error occurred.
}
template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
template<typename ConstBufferSequence , typename WriteHandler >
boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::BOOST_ASIO_INITFN_RESULT_TYPE ( WriteHandler  ,
void(boost::system::error_code, std::size_t)   
) const

Start an asynchronous send.

This function is used to asynchronously send data on the sequenced packet socket. The function call always returns immediately.

Parameters
buffersOne or more data buffers to be sent on the socket. Although the buffers object may be copied as necessary, ownership of the underlying memory blocks is retained by the caller, which must guarantee that they remain valid until the handler is called.
flagsFlags specifying how the send call is to be made.
handlerThe handler to be called when the send operation completes. Copies will be made of the handler as required. The function signature of the handler must be:
void handler(
const boost::system::error_code& error, // Result of operation.
std::size_t bytes_transferred // Number of bytes sent.
);
Regardless of whether the asynchronous operation completes immediately or not, the handler will not be invoked from within this function. Invocation of the handler will be performed in a manner equivalent to using boost::asio::io_service::post().
Example
To send a single data buffer use the boost::asio::buffer function as follows:
socket.async_send(boost::asio::buffer(data, size), 0, handler);
See the boost::asio::buffer documentation for information on sending multiple buffers in one go, and how to use it with arrays, boost::array or std::vector.
template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
template<typename MutableBufferSequence , typename ReadHandler >
boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::BOOST_ASIO_INITFN_RESULT_TYPE ( ReadHandler  ,
void(boost::system::error_code, std::size_t)   
) const

Start an asynchronous receive.

This function is used to asynchronously receive data from the sequenced packet socket. The function call always returns immediately.

Parameters
buffersOne or more buffers into which the data will be received. Although the buffers object may be copied as necessary, ownership of the underlying memory blocks is retained by the caller, which must guarantee that they remain valid until the handler is called.
out_flagsOnce the asynchronous operation completes, contains flags associated with the received data. For example, if the socket_base::message_end_of_record bit is set then the received data marks the end of a record. The caller must guarantee that the referenced variable remains valid until the handler is called.
handlerThe handler to be called when the receive operation completes. Copies will be made of the handler as required. The function signature of the handler must be:
void handler(
const boost::system::error_code& error, // Result of operation.
std::size_t bytes_transferred // Number of bytes received.
);
Regardless of whether the asynchronous operation completes immediately or not, the handler will not be invoked from within this function. Invocation of the handler will be performed in a manner equivalent to using boost::asio::io_service::post().
Example
To receive into a single data buffer use the boost::asio::buffer function as follows:
socket.async_receive(boost::asio::buffer(data, size), out_flags, handler);
See the boost::asio::buffer documentation for information on receiving into multiple buffers in one go, and how to use it with arrays, boost::array or std::vector.
template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
template<typename MutableBufferSequence , typename ReadHandler >
boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::BOOST_ASIO_INITFN_RESULT_TYPE ( ReadHandler  ,
void(boost::system::error_code, std::size_t)   
) const

Start an asynchronous receive.

This function is used to asynchronously receive data from the sequenced data socket. The function call always returns immediately.

Parameters
buffersOne or more buffers into which the data will be received. Although the buffers object may be copied as necessary, ownership of the underlying memory blocks is retained by the caller, which must guarantee that they remain valid until the handler is called.
in_flagsFlags specifying how the receive call is to be made.
out_flagsOnce the asynchronous operation completes, contains flags associated with the received data. For example, if the socket_base::message_end_of_record bit is set then the received data marks the end of a record. The caller must guarantee that the referenced variable remains valid until the handler is called.
handlerThe handler to be called when the receive operation completes. Copies will be made of the handler as required. The function signature of the handler must be:
void handler(
const boost::system::error_code& error, // Result of operation.
std::size_t bytes_transferred // Number of bytes received.
);
Regardless of whether the asynchronous operation completes immediately or not, the handler will not be invoked from within this function. Invocation of the handler will be performed in a manner equivalent to using boost::asio::io_service::post().
Example
To receive into a single data buffer use the boost::asio::buffer function as follows:
socket.async_receive(
0, out_flags, handler);
See the boost::asio::buffer documentation for information on receiving into multiple buffers in one go, and how to use it with arrays, boost::array or std::vector.
boost::asio::basic_socket< Protocol, SeqPacketSocketService >::BOOST_ASIO_INITFN_RESULT_TYPE ( ConnectHandler  ,
void(boost::system::error_code  
) const
inherited

Start an asynchronous connect.

This function is used to asynchronously connect a socket to the specified remote endpoint. The function call always returns immediately.

The socket is automatically opened if it is not already open. If the connect fails, and the socket was automatically opened, the socket is not returned to the closed state.

Parameters
peer_endpointThe remote endpoint to which the socket will be connected. Copies will be made of the endpoint object as required.
handlerThe handler to be called when the connection operation completes. Copies will be made of the handler as required. The function signature of the handler must be:
void handler(
const boost::system::error_code& error // Result of operation
);
Regardless of whether the asynchronous operation completes immediately or not, the handler will not be invoked from within this function. Invocation of the handler will be performed in a manner equivalent to using boost::asio::io_service::post().
Example
void connect_handler(const boost::system::error_code& error)
{
if (!error)
{
// Connect succeeded.
}
}
...
boost::asio::ip::tcp::socket socket(io_service);
socket.async_connect(endpoint, connect_handler);
template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
socket_base::message_flags boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::BOOST_ASIO_MOVE_ARG ( WriteHandler  )
inline
template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
socket_base::message_flags boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::BOOST_ASIO_MOVE_ARG ( ReadHandler  )
inline
template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
socket_base::message_flags socket_base::message_flags boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::BOOST_ASIO_MOVE_ARG ( ReadHandler  )
inline
boost::asio::basic_socket< Protocol, SeqPacketSocketService >::BOOST_ASIO_MOVE_ARG ( ConnectHandler  )
inlineinherited
boost::asio::socket_base::BOOST_ASIO_STATIC_CONSTANT ( int  ,
message_peek  = BOOST_ASIO_OS_DEF(MSG_PEEK) 
)
inherited
boost::asio::socket_base::BOOST_ASIO_STATIC_CONSTANT ( int  ,
message_out_of_band  = BOOST_ASIO_OS_DEF(MSG_OOB) 
)
inherited
boost::asio::socket_base::BOOST_ASIO_STATIC_CONSTANT ( int  ,
message_do_not_route  = BOOST_ASIO_OS_DEF(MSG_DONTROUTE) 
)
inherited
boost::asio::socket_base::BOOST_ASIO_STATIC_CONSTANT ( int  ,
message_end_of_record  = BOOST_ASIO_OS_DEF(MSG_EOR) 
)
inherited
boost::asio::socket_base::BOOST_ASIO_STATIC_CONSTANT ( int  ,
max_connections  = BOOST_ASIO_OS_DEF(SOMAXCONN) 
)
inherited

The maximum length of the queue of pending incoming connections.

void boost::asio::basic_socket< Protocol, SeqPacketSocketService >::cancel ( )
inlineinherited

Cancel all asynchronous operations associated with the socket.

This function causes all outstanding asynchronous connect, send and receive operations to finish immediately, and the handlers for cancelled operations will be passed the boost::asio::error::operation_aborted error.

Exceptions
boost::system::system_errorThrown on failure.
Note
Calls to cancel() will always fail with boost::asio::error::operation_not_supported when run on Windows XP, Windows Server 2003, and earlier versions of Windows, unless BOOST_ASIO_ENABLE_CANCELIO is defined. However, the CancelIo function has two issues that should be considered before enabling its use:
  • It will only cancel asynchronous operations that were initiated in the current thread.
  • It can appear to complete without error, but the request to cancel the unfinished operations may be silently ignored by the operating system. Whether it works or not seems to depend on the drivers that are installed.

For portable cancellation, consider using one of the following alternatives:

  • Disable asio's I/O completion port backend by defining BOOST_ASIO_DISABLE_IOCP.
  • Use the close() function to simultaneously cancel the outstanding operations and close the socket.

When running on Windows Vista, Windows Server 2008, and later, the CancelIoEx function is always used. This function does not have the problems described above.

boost::system::error_code boost::asio::basic_socket< Protocol, SeqPacketSocketService >::cancel ( boost::system::error_code ec)
inlineinherited

Cancel all asynchronous operations associated with the socket.

This function causes all outstanding asynchronous connect, send and receive operations to finish immediately, and the handlers for cancelled operations will be passed the boost::asio::error::operation_aborted error.

Parameters
ecSet to indicate what error occurred, if any.
Note
Calls to cancel() will always fail with boost::asio::error::operation_not_supported when run on Windows XP, Windows Server 2003, and earlier versions of Windows, unless BOOST_ASIO_ENABLE_CANCELIO is defined. However, the CancelIo function has two issues that should be considered before enabling its use:
  • It will only cancel asynchronous operations that were initiated in the current thread.
  • It can appear to complete without error, but the request to cancel the unfinished operations may be silently ignored by the operating system. Whether it works or not seems to depend on the drivers that are installed.

For portable cancellation, consider using one of the following alternatives:

  • Disable asio's I/O completion port backend by defining BOOST_ASIO_DISABLE_IOCP.
  • Use the close() function to simultaneously cancel the outstanding operations and close the socket.

When running on Windows Vista, Windows Server 2008, and later, the CancelIoEx function is always used. This function does not have the problems described above.

void boost::asio::basic_socket< Protocol, SeqPacketSocketService >::close ( )
inlineinherited

Close the socket.

This function is used to close the socket. Any asynchronous send, receive or connect operations will be cancelled immediately, and will complete with the boost::asio::error::operation_aborted error.

Exceptions
boost::system::system_errorThrown on failure. Note that, even if the function indicates an error, the underlying descriptor is closed.
Note
For portable behaviour with respect to graceful closure of a connected socket, call shutdown() before closing the socket.
boost::system::error_code boost::asio::basic_socket< Protocol, SeqPacketSocketService >::close ( boost::system::error_code ec)
inlineinherited

Close the socket.

This function is used to close the socket. Any asynchronous send, receive or connect operations will be cancelled immediately, and will complete with the boost::asio::error::operation_aborted error.

Parameters
ecSet to indicate what error occurred, if any. Note that, even if the function indicates an error, the underlying descriptor is closed.
Example
boost::asio::ip::tcp::socket socket(io_service);
...
boost::system::error_code ec;
socket.close(ec);
if (ec)
{
// An error occurred.
}
Note
For portable behaviour with respect to graceful closure of a connected socket, call shutdown() before closing the socket.
void boost::asio::basic_socket< Protocol, SeqPacketSocketService >::connect ( const endpoint_type peer_endpoint)
inlineinherited

Connect the socket to the specified endpoint.

This function is used to connect a socket to the specified remote endpoint. The function call will block until the connection is successfully made or an error occurs.

The socket is automatically opened if it is not already open. If the connect fails, and the socket was automatically opened, the socket is not returned to the closed state.

Parameters
peer_endpointThe remote endpoint to which the socket will be connected.
Exceptions
boost::system::system_errorThrown on failure.
Example
boost::asio::ip::tcp::socket socket(io_service);
socket.connect(endpoint);
boost::system::error_code boost::asio::basic_socket< Protocol, SeqPacketSocketService >::connect ( const endpoint_type peer_endpoint,
boost::system::error_code ec 
)
inlineinherited

Connect the socket to the specified endpoint.

This function is used to connect a socket to the specified remote endpoint. The function call will block until the connection is successfully made or an error occurs.

The socket is automatically opened if it is not already open. If the connect fails, and the socket was automatically opened, the socket is not returned to the closed state.

Parameters
peer_endpointThe remote endpoint to which the socket will be connected.
ecSet to indicate what error occurred, if any.
Example
boost::asio::ip::tcp::socket socket(io_service);
socket.connect(endpoint, ec);
if (ec)
{
// An error occurred.
}
const implementation_type& boost::asio::basic_io_object< SeqPacketSocketService >::get_implementation ( ) const
inlineprotectedinherited

Get the underlying implementation of the I/O object.

boost::asio::io_service& boost::asio::basic_io_object< SeqPacketSocketService >::get_io_service ( )
inlineinherited

Get the io_service associated with the object.

This function may be used to obtain the io_service object that the I/O object uses to dispatch handlers for asynchronous operations.

Returns
A reference to the io_service object that the I/O object will use to dispatch handlers. Ownership is not transferred to the caller.
void boost::asio::basic_socket< Protocol, SeqPacketSocketService >::get_option ( GettableSocketOption &  option) const
inlineinherited
boost::system::error_code boost::asio::basic_socket< Protocol, SeqPacketSocketService >::get_option ( GettableSocketOption &  option,
boost::system::error_code ec 
) const
inlineinherited

Get an option from the socket.

This function is used to get the current value of an option on the socket.

Parameters
optionThe option value to be obtained from the socket.
ecSet to indicate what error occurred, if any.
See also
GettableSocketOption
boost::asio::socket_base::broadcast
boost::asio::socket_base::do_not_route
boost::asio::socket_base::keep_alive
boost::asio::socket_base::linger
boost::asio::socket_base::receive_buffer_size
boost::asio::socket_base::receive_low_watermark
boost::asio::socket_base::reuse_address
boost::asio::socket_base::send_buffer_size
boost::asio::socket_base::send_low_watermark
boost::asio::ip::multicast::join_group
boost::asio::ip::multicast::leave_group
boost::asio::ip::multicast::enable_loopback
boost::asio::ip::multicast::outbound_interface
boost::asio::ip::multicast::hops
boost::asio::ip::tcp::no_delay
Example
Getting the value of the SOL_SOCKET/SO_KEEPALIVE option:
boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::ip::tcp::socket::keep_alive option;
socket.get_option(option, ec);
if (ec)
{
// An error occurred.
}
bool is_set = option.value();
const service_type& boost::asio::basic_io_object< SeqPacketSocketService >::get_service ( ) const
inlineprotectedinherited

Get the service associated with the I/O object.

void boost::asio::basic_socket< Protocol, SeqPacketSocketService >::io_control ( IoControlCommand &  command)
inlineinherited

Perform an IO control command on the socket.

This function is used to execute an IO control command on the socket.

Parameters
commandThe IO control command to be performed on the socket.
Exceptions
boost::system::system_errorThrown on failure.
See also
IoControlCommand
boost::asio::socket_base::bytes_readable
boost::asio::socket_base::non_blocking_io
Example
Getting the number of bytes ready to read:
boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::ip::tcp::socket::bytes_readable command;
socket.io_control(command);
std::size_t bytes_readable = command.get();
boost::system::error_code boost::asio::basic_socket< Protocol, SeqPacketSocketService >::io_control ( IoControlCommand &  command,
boost::system::error_code ec 
)
inlineinherited

Perform an IO control command on the socket.

This function is used to execute an IO control command on the socket.

Parameters
commandThe IO control command to be performed on the socket.
ecSet to indicate what error occurred, if any.
See also
IoControlCommand
boost::asio::socket_base::bytes_readable
boost::asio::socket_base::non_blocking_io
Example
Getting the number of bytes ready to read:
boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::ip::tcp::socket::bytes_readable command;
socket.io_control(command, ec);
if (ec)
{
// An error occurred.
}
std::size_t bytes_readable = command.get();
bool boost::asio::basic_socket< Protocol, SeqPacketSocketService >::is_open ( ) const
inlineinherited

Determine whether the socket is open.

endpoint_type boost::asio::basic_socket< Protocol, SeqPacketSocketService >::local_endpoint ( ) const
inlineinherited

Get the local endpoint of the socket.

This function is used to obtain the locally bound endpoint of the socket.

Returns
An object that represents the local endpoint of the socket.
Exceptions
boost::system::system_errorThrown on failure.
Example
boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::ip::tcp::endpoint endpoint = socket.local_endpoint();
endpoint_type boost::asio::basic_socket< Protocol, SeqPacketSocketService >::local_endpoint ( boost::system::error_code ec) const
inlineinherited

Get the local endpoint of the socket.

This function is used to obtain the locally bound endpoint of the socket.

Parameters
ecSet to indicate what error occurred, if any.
Returns
An object that represents the local endpoint of the socket. Returns a default-constructed endpoint object if an error occurred.
Example
boost::asio::ip::tcp::socket socket(io_service);
...
boost::system::error_code ec;
boost::asio::ip::tcp::endpoint endpoint = socket.local_endpoint(ec);
if (ec)
{
// An error occurred.
}
lowest_layer_type& boost::asio::basic_socket< Protocol, SeqPacketSocketService >::lowest_layer ( )
inlineinherited

Get a reference to the lowest layer.

This function returns a reference to the lowest layer in a stack of layers. Since a basic_socket cannot contain any further layers, it simply returns a reference to itself.

Returns
A reference to the lowest layer in the stack of layers. Ownership is not transferred to the caller.
const lowest_layer_type& boost::asio::basic_socket< Protocol, SeqPacketSocketService >::lowest_layer ( ) const
inlineinherited

Get a const reference to the lowest layer.

This function returns a const reference to the lowest layer in a stack of layers. Since a basic_socket cannot contain any further layers, it simply returns a reference to itself.

Returns
A const reference to the lowest layer in the stack of layers. Ownership is not transferred to the caller.
native_type boost::asio::basic_socket< Protocol, SeqPacketSocketService >::native ( )
inlineinherited

(Deprecated: Use native_handle().) Get the native socket representation.

This function may be used to obtain the underlying representation of the socket. This is intended to allow access to native socket functionality that is not otherwise provided.

native_handle_type boost::asio::basic_socket< Protocol, SeqPacketSocketService >::native_handle ( )
inlineinherited

Get the native socket representation.

This function may be used to obtain the underlying representation of the socket. This is intended to allow access to native socket functionality that is not otherwise provided.

bool boost::asio::basic_socket< Protocol, SeqPacketSocketService >::native_non_blocking ( ) const
inlineinherited

Gets the non-blocking mode of the native socket implementation.

This function is used to retrieve the non-blocking mode of the underlying native socket. This mode has no effect on the behaviour of the socket object's synchronous operations.

Returns
true if the underlying socket is in non-blocking mode and direct system calls may fail with boost::asio::error::would_block (or the equivalent system error).
Note
The current non-blocking mode is cached by the socket object. Consequently, the return value may be incorrect if the non-blocking mode was set directly on the native socket.
Example
This function is intended to allow the encapsulation of arbitrary non-blocking system calls as asynchronous operations, in a way that is transparent to the user of the socket object. The following example illustrates how Linux's sendfile system call might be encapsulated:
template <typename Handler>
struct sendfile_op
{
tcp::socket& sock_;
int fd_;
Handler handler_;
off_t offset_;
std::size_t total_bytes_transferred_;
// Function call operator meeting WriteHandler requirements.
// Used as the handler for the async_write_some operation.
void operator()(boost::system::error_code ec, std::size_t)
{
// Put the underlying socket into non-blocking mode.
if (!ec)
if (!sock_.native_non_blocking())
sock_.native_non_blocking(true, ec);
if (!ec)
{
for (;;)
{
// Try the system call.
errno = 0;
int n = ::sendfile(sock_.native_handle(), fd_, &offset_, 65536);
ec = boost::system::error_code(n < 0 ? errno : 0,
total_bytes_transferred_ += ec ? 0 : n;
// Retry operation immediately if interrupted by signal.
continue;
// Check if we need to run the operation again.
{
// We have to wait for the socket to become ready again.
sock_.async_write_some(boost::asio::null_buffers(), *this);
return;
}
if (ec || n == 0)
{
// An error occurred, or we have reached the end of the file.
// Either way we must exit the loop so we can call the handler.
break;
}
// Loop around to try calling sendfile again.
}
}
// Pass result back to user's handler.
handler_(ec, total_bytes_transferred_);
}
};
template <typename Handler>
void async_sendfile(tcp::socket& sock, int fd, Handler h)
{
sendfile_op<Handler> op = { sock, fd, h, 0, 0 };
sock.async_write_some(boost::asio::null_buffers(), op);
}
void boost::asio::basic_socket< Protocol, SeqPacketSocketService >::native_non_blocking ( bool  mode)
inlineinherited

Sets the non-blocking mode of the native socket implementation.

This function is used to modify the non-blocking mode of the underlying native socket. It has no effect on the behaviour of the socket object's synchronous operations.

Parameters
modeIf true, the underlying socket is put into non-blocking mode and direct system calls may fail with boost::asio::error::would_block (or the equivalent system error).
Exceptions
boost::system::system_errorThrown on failure. If the mode is false, but the current value of non_blocking() is true, this function fails with boost::asio::error::invalid_argument, as the combination does not make sense.
Example
This function is intended to allow the encapsulation of arbitrary non-blocking system calls as asynchronous operations, in a way that is transparent to the user of the socket object. The following example illustrates how Linux's sendfile system call might be encapsulated:
template <typename Handler>
struct sendfile_op
{
tcp::socket& sock_;
int fd_;
Handler handler_;
off_t offset_;
std::size_t total_bytes_transferred_;
// Function call operator meeting WriteHandler requirements.
// Used as the handler for the async_write_some operation.
void operator()(boost::system::error_code ec, std::size_t)
{
// Put the underlying socket into non-blocking mode.
if (!ec)
if (!sock_.native_non_blocking())
sock_.native_non_blocking(true, ec);
if (!ec)
{
for (;;)
{
// Try the system call.
errno = 0;
int n = ::sendfile(sock_.native_handle(), fd_, &offset_, 65536);
ec = boost::system::error_code(n < 0 ? errno : 0,
total_bytes_transferred_ += ec ? 0 : n;
// Retry operation immediately if interrupted by signal.
continue;
// Check if we need to run the operation again.
{
// We have to wait for the socket to become ready again.
sock_.async_write_some(boost::asio::null_buffers(), *this);
return;
}
if (ec || n == 0)
{
// An error occurred, or we have reached the end of the file.
// Either way we must exit the loop so we can call the handler.
break;
}
// Loop around to try calling sendfile again.
}
}
// Pass result back to user's handler.
handler_(ec, total_bytes_transferred_);
}
};
template <typename Handler>
void async_sendfile(tcp::socket& sock, int fd, Handler h)
{
sendfile_op<Handler> op = { sock, fd, h, 0, 0 };
sock.async_write_some(boost::asio::null_buffers(), op);
}
boost::system::error_code boost::asio::basic_socket< Protocol, SeqPacketSocketService >::native_non_blocking ( bool  mode,
boost::system::error_code ec 
)
inlineinherited

Sets the non-blocking mode of the native socket implementation.

This function is used to modify the non-blocking mode of the underlying native socket. It has no effect on the behaviour of the socket object's synchronous operations.

Parameters
modeIf true, the underlying socket is put into non-blocking mode and direct system calls may fail with boost::asio::error::would_block (or the equivalent system error).
ecSet to indicate what error occurred, if any. If the mode is false, but the current value of non_blocking() is true, this function fails with boost::asio::error::invalid_argument, as the combination does not make sense.
Example
This function is intended to allow the encapsulation of arbitrary non-blocking system calls as asynchronous operations, in a way that is transparent to the user of the socket object. The following example illustrates how Linux's sendfile system call might be encapsulated:
template <typename Handler>
struct sendfile_op
{
tcp::socket& sock_;
int fd_;
Handler handler_;
off_t offset_;
std::size_t total_bytes_transferred_;
// Function call operator meeting WriteHandler requirements.
// Used as the handler for the async_write_some operation.
void operator()(boost::system::error_code ec, std::size_t)
{
// Put the underlying socket into non-blocking mode.
if (!ec)
if (!sock_.native_non_blocking())
sock_.native_non_blocking(true, ec);
if (!ec)
{
for (;;)
{
// Try the system call.
errno = 0;
int n = ::sendfile(sock_.native_handle(), fd_, &offset_, 65536);
ec = boost::system::error_code(n < 0 ? errno : 0,
total_bytes_transferred_ += ec ? 0 : n;
// Retry operation immediately if interrupted by signal.
continue;
// Check if we need to run the operation again.
{
// We have to wait for the socket to become ready again.
sock_.async_write_some(boost::asio::null_buffers(), *this);
return;
}
if (ec || n == 0)
{
// An error occurred, or we have reached the end of the file.
// Either way we must exit the loop so we can call the handler.
break;
}
// Loop around to try calling sendfile again.
}
}
// Pass result back to user's handler.
handler_(ec, total_bytes_transferred_);
}
};
template <typename Handler>
void async_sendfile(tcp::socket& sock, int fd, Handler h)
{
sendfile_op<Handler> op = { sock, fd, h, 0, 0 };
sock.async_write_some(boost::asio::null_buffers(), op);
}
bool boost::asio::basic_socket< Protocol, SeqPacketSocketService >::non_blocking ( ) const
inlineinherited

Gets the non-blocking mode of the socket.

Returns
true if the socket's synchronous operations will fail with boost::asio::error::would_block if they are unable to perform the requested operation immediately. If false, synchronous operations will block until complete.
Note
The non-blocking mode has no effect on the behaviour of asynchronous operations. Asynchronous operations will never fail with the error boost::asio::error::would_block.
void boost::asio::basic_socket< Protocol, SeqPacketSocketService >::non_blocking ( bool  mode)
inlineinherited

Sets the non-blocking mode of the socket.

Parameters
modeIf true, the socket's synchronous operations will fail with boost::asio::error::would_block if they are unable to perform the requested operation immediately. If false, synchronous operations will block until complete.
Exceptions
boost::system::system_errorThrown on failure.
Note
The non-blocking mode has no effect on the behaviour of asynchronous operations. Asynchronous operations will never fail with the error boost::asio::error::would_block.
boost::system::error_code boost::asio::basic_socket< Protocol, SeqPacketSocketService >::non_blocking ( bool  mode,
boost::system::error_code ec 
)
inlineinherited

Sets the non-blocking mode of the socket.

Parameters
modeIf true, the socket's synchronous operations will fail with boost::asio::error::would_block if they are unable to perform the requested operation immediately. If false, synchronous operations will block until complete.
ecSet to indicate what error occurred, if any.
Note
The non-blocking mode has no effect on the behaviour of asynchronous operations. Asynchronous operations will never fail with the error boost::asio::error::would_block.
void boost::asio::basic_socket< Protocol, SeqPacketSocketService >::open ( const protocol_type protocol = protocol_type())
inlineinherited

Open the socket using the specified protocol.

This function opens the socket so that it will use the specified protocol.

Parameters
protocolAn object specifying protocol parameters to be used.
Exceptions
boost::system::system_errorThrown on failure.
Example
boost::asio::ip::tcp::socket socket(io_service);
socket.open(boost::asio::ip::tcp::v4());
boost::system::error_code boost::asio::basic_socket< Protocol, SeqPacketSocketService >::open ( const protocol_type protocol,
boost::system::error_code ec 
)
inlineinherited

Open the socket using the specified protocol.

This function opens the socket so that it will use the specified protocol.

Parameters
protocolAn object specifying which protocol is to be used.
ecSet to indicate what error occurred, if any.
Example
boost::asio::ip::tcp::socket socket(io_service);
socket.open(boost::asio::ip::tcp::v4(), ec);
if (ec)
{
// An error occurred.
}
template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
template<typename MutableBufferSequence >
std::size_t boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::receive ( const MutableBufferSequence &  buffers,
socket_base::message_flags out_flags 
)
inline

Receive some data on the socket.

This function is used to receive data on the sequenced packet socket. The function call will block until data has been received successfully, or until an error occurs.

Parameters
buffersOne or more buffers into which the data will be received.
out_flagsAfter the receive call completes, contains flags associated with the received data. For example, if the socket_base::message_end_of_record bit is set then the received data marks the end of a record.
Returns
The number of bytes received.
Exceptions
boost::system::system_errorThrown on failure. An error code of boost::asio::error::eof indicates that the connection was closed by the peer.
Example
To receive into a single data buffer use the boost::asio::buffer function as follows:
socket.receive(boost::asio::buffer(data, size), out_flags);
See the boost::asio::buffer documentation for information on receiving into multiple buffers in one go, and how to use it with arrays, boost::array or std::vector.

References boost::asio::basic_io_object< SeqPacketSocketService >::get_implementation(), boost::asio::basic_io_object< SeqPacketSocketService >::get_service(), and boost::asio::s.

template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
template<typename MutableBufferSequence >
std::size_t boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::receive ( const MutableBufferSequence &  buffers,
socket_base::message_flags  in_flags,
socket_base::message_flags out_flags 
)
inline

Receive some data on the socket.

This function is used to receive data on the sequenced packet socket. The function call will block until data has been received successfully, or until an error occurs.

Parameters
buffersOne or more buffers into which the data will be received.
in_flagsFlags specifying how the receive call is to be made.
out_flagsAfter the receive call completes, contains flags associated with the received data. For example, if the socket_base::message_end_of_record bit is set then the received data marks the end of a record.
Returns
The number of bytes received.
Exceptions
boost::system::system_errorThrown on failure. An error code of boost::asio::error::eof indicates that the connection was closed by the peer.
Note
The receive operation may not receive all of the requested number of bytes. Consider using the boost::asio::read function if you need to ensure that the requested amount of data is read before the blocking operation completes.
Example
To receive into a single data buffer use the boost::asio::buffer function as follows:
socket.receive(boost::asio::buffer(data, size), 0, out_flags);
See the boost::asio::buffer documentation for information on receiving into multiple buffers in one go, and how to use it with arrays, boost::array or std::vector.

References boost::asio::basic_io_object< SeqPacketSocketService >::get_implementation(), boost::asio::basic_io_object< SeqPacketSocketService >::get_service(), and boost::asio::s.

template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
template<typename MutableBufferSequence >
std::size_t boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::receive ( const MutableBufferSequence &  buffers,
socket_base::message_flags  in_flags,
socket_base::message_flags out_flags,
boost::system::error_code ec 
)
inline

Receive some data on a connected socket.

This function is used to receive data on the sequenced packet socket. The function call will block until data has been received successfully, or until an error occurs.

Parameters
buffersOne or more buffers into which the data will be received.
in_flagsFlags specifying how the receive call is to be made.
out_flagsAfter the receive call completes, contains flags associated with the received data. For example, if the socket_base::message_end_of_record bit is set then the received data marks the end of a record.
ecSet to indicate what error occurred, if any.
Returns
The number of bytes received. Returns 0 if an error occurred.
Note
The receive operation may not receive all of the requested number of bytes. Consider using the boost::asio::read function if you need to ensure that the requested amount of data is read before the blocking operation completes.

References boost::asio::basic_io_object< SeqPacketSocketService >::get_implementation(), and boost::asio::basic_io_object< SeqPacketSocketService >::get_service().

endpoint_type boost::asio::basic_socket< Protocol, SeqPacketSocketService >::remote_endpoint ( ) const
inlineinherited

Get the remote endpoint of the socket.

This function is used to obtain the remote endpoint of the socket.

Returns
An object that represents the remote endpoint of the socket.
Exceptions
boost::system::system_errorThrown on failure.
Example
boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::ip::tcp::endpoint endpoint = socket.remote_endpoint();
endpoint_type boost::asio::basic_socket< Protocol, SeqPacketSocketService >::remote_endpoint ( boost::system::error_code ec) const
inlineinherited

Get the remote endpoint of the socket.

This function is used to obtain the remote endpoint of the socket.

Parameters
ecSet to indicate what error occurred, if any.
Returns
An object that represents the remote endpoint of the socket. Returns a default-constructed endpoint object if an error occurred.
Example
boost::asio::ip::tcp::socket socket(io_service);
...
boost::system::error_code ec;
boost::asio::ip::tcp::endpoint endpoint = socket.remote_endpoint(ec);
if (ec)
{
// An error occurred.
}
template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
template<typename ConstBufferSequence >
std::size_t boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::send ( const ConstBufferSequence &  buffers,
socket_base::message_flags  flags 
)
inline

Send some data on the socket.

This function is used to send data on the sequenced packet socket. The function call will block until the data has been sent successfully, or an until error occurs.

Parameters
buffersOne or more data buffers to be sent on the socket.
flagsFlags specifying how the send call is to be made.
Returns
The number of bytes sent.
Exceptions
boost::system::system_errorThrown on failure.
Example
To send a single data buffer use the boost::asio::buffer function as follows:
socket.send(boost::asio::buffer(data, size), 0);
See the boost::asio::buffer documentation for information on sending multiple buffers in one go, and how to use it with arrays, boost::array or std::vector.

References boost::asio::basic_io_object< SeqPacketSocketService >::get_implementation(), boost::asio::basic_io_object< SeqPacketSocketService >::get_service(), and boost::asio::s.

template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
template<typename ConstBufferSequence >
std::size_t boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::send ( const ConstBufferSequence &  buffers,
socket_base::message_flags  flags,
boost::system::error_code ec 
)
inline

Send some data on the socket.

This function is used to send data on the sequenced packet socket. The function call will block the data has been sent successfully, or an until error occurs.

Parameters
buffersOne or more data buffers to be sent on the socket.
flagsFlags specifying how the send call is to be made.
ecSet to indicate what error occurred, if any.
Returns
The number of bytes sent. Returns 0 if an error occurred.
Note
The send operation may not transmit all of the data to the peer. Consider using the boost::asio::write function if you need to ensure that all data is written before the blocking operation completes.

References boost::asio::basic_io_object< SeqPacketSocketService >::get_implementation(), and boost::asio::basic_io_object< SeqPacketSocketService >::get_service().

void boost::asio::basic_socket< Protocol, SeqPacketSocketService >::set_option ( const SettableSocketOption &  option)
inlineinherited
boost::system::error_code boost::asio::basic_socket< Protocol, SeqPacketSocketService >::set_option ( const SettableSocketOption &  option,
boost::system::error_code ec 
)
inlineinherited
void boost::asio::basic_socket< Protocol, SeqPacketSocketService >::shutdown ( shutdown_type  what)
inlineinherited

Disable sends or receives on the socket.

This function is used to disable send operations, receive operations, or both.

Parameters
whatDetermines what types of operation will no longer be allowed.
Exceptions
boost::system::system_errorThrown on failure.
Example
Shutting down the send side of the socket:
boost::system::error_code boost::asio::basic_socket< Protocol, SeqPacketSocketService >::shutdown ( shutdown_type  what,
boost::system::error_code ec 
)
inlineinherited

Disable sends or receives on the socket.

This function is used to disable send operations, receive operations, or both.

Parameters
whatDetermines what types of operation will no longer be allowed.
ecSet to indicate what error occurred, if any.
Example
Shutting down the send side of the socket:
boost::asio::ip::tcp::socket socket(io_service);
...
boost::system::error_code ec;
if (ec)
{
// An error occurred.
}

Member Data Documentation

template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
socket_base::message_flags boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::flags
implementation_type boost::asio::basic_io_object< SeqPacketSocketService >::implementation
protectedinherited

(Deprecated: Use get_implementation().) The underlying implementation of the I/O object.

template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
socket_base::message_flags boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::in_flags
template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
socket_base::message_flags& boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::out_flags
template<typename Protocol , typename SeqPacketSocketService = seq_packet_socket_service<Protocol>>
socket_base::message_flags socket_base::message_flags& boost::asio::basic_seq_packet_socket< Protocol, SeqPacketSocketService >::out_flags
service_type& boost::asio::basic_io_object< SeqPacketSocketService >::service
protectedinherited

(Deprecated: Use get_service().) The service associated with the I/O object.

Note
Available only for services that do not support movability.

The documentation for this class was generated from the following file: