|
ASIO_DECL | reactive_socket_service_base (asio::io_service &io_service) |
|
ASIO_DECL void | shutdown_service () |
|
ASIO_DECL void | construct (base_implementation_type &impl) |
|
ASIO_DECL void | base_move_construct (base_implementation_type &impl, base_implementation_type &other_impl) |
|
ASIO_DECL void | base_move_assign (base_implementation_type &impl, reactive_socket_service_base &other_service, base_implementation_type &other_impl) |
|
ASIO_DECL void | destroy (base_implementation_type &impl) |
|
bool | is_open (const base_implementation_type &impl) const |
|
ASIO_DECL asio::error_code | close (base_implementation_type &impl, asio::error_code &ec) |
|
native_handle_type | native_handle (base_implementation_type &impl) |
|
ASIO_DECL asio::error_code | cancel (base_implementation_type &impl, asio::error_code &ec) |
|
bool | at_mark (const base_implementation_type &impl, asio::error_code &ec) const |
|
std::size_t | available (const base_implementation_type &impl, asio::error_code &ec) const |
|
asio::error_code | listen (base_implementation_type &impl, int backlog, asio::error_code &ec) |
|
template<typename IO_Control_Command > |
asio::error_code | io_control (base_implementation_type &impl, IO_Control_Command &command, asio::error_code &ec) |
|
bool | non_blocking (const base_implementation_type &impl) const |
|
asio::error_code | non_blocking (base_implementation_type &impl, bool mode, asio::error_code &ec) |
|
bool | native_non_blocking (const base_implementation_type &impl) const |
|
asio::error_code | native_non_blocking (base_implementation_type &impl, bool mode, asio::error_code &ec) |
|
asio::error_code | shutdown (base_implementation_type &impl, socket_base::shutdown_type what, asio::error_code &ec) |
|
template<typename ConstBufferSequence > |
size_t | send (base_implementation_type &impl, const ConstBufferSequence &buffers, socket_base::message_flags flags, asio::error_code &ec) |
|
size_t | send (base_implementation_type &impl, const null_buffers &, socket_base::message_flags, asio::error_code &ec) |
|
template<typename ConstBufferSequence , typename Handler > |
void | async_send (base_implementation_type &impl, const ConstBufferSequence &buffers, socket_base::message_flags flags, Handler &handler) |
|
template<typename Handler > |
void | async_send (base_implementation_type &impl, const null_buffers &, socket_base::message_flags, Handler &handler) |
|
template<typename MutableBufferSequence > |
size_t | receive (base_implementation_type &impl, const MutableBufferSequence &buffers, socket_base::message_flags flags, asio::error_code &ec) |
|
size_t | receive (base_implementation_type &impl, const null_buffers &, socket_base::message_flags, asio::error_code &ec) |
|
template<typename MutableBufferSequence , typename Handler > |
void | async_receive (base_implementation_type &impl, const MutableBufferSequence &buffers, socket_base::message_flags flags, Handler &handler) |
|
template<typename Handler > |
void | async_receive (base_implementation_type &impl, const null_buffers &, socket_base::message_flags flags, Handler &handler) |
|
template<typename MutableBufferSequence > |
size_t | receive_with_flags (base_implementation_type &impl, const MutableBufferSequence &buffers, socket_base::message_flags in_flags, socket_base::message_flags &out_flags, asio::error_code &ec) |
|
size_t | receive_with_flags (base_implementation_type &impl, const null_buffers &, socket_base::message_flags, socket_base::message_flags &out_flags, asio::error_code &ec) |
|
template<typename MutableBufferSequence , typename Handler > |
void | async_receive_with_flags (base_implementation_type &impl, const MutableBufferSequence &buffers, socket_base::message_flags in_flags, socket_base::message_flags &out_flags, Handler &handler) |
|
template<typename Handler > |
void | async_receive_with_flags (base_implementation_type &impl, const null_buffers &, socket_base::message_flags in_flags, socket_base::message_flags &out_flags, Handler &handler) |
|