asio C++ library

PrevUpHomeNext

basic_socket::debug

Inherited from socket_base.

Socket option to enable socket-level debugging.

typedef implementation_defined debug;

Implements the SOL_SOCKET/SO_DEBUG socket option.

Examples

Setting the option:

asio::ip::tcp::socket socket(io_service);
...
asio::socket_base::debug option(true);
socket.set_option(option);

Getting the current option value:

asio::ip::tcp::socket socket(io_service);
...
asio::socket_base::debug option;
socket.get_option(option);
bool is_set = option.value();
Requirements

Header: asio/basic_socket.hpp

Convenience header: asio.hpp


PrevUpHomeNext