Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

basic_raw_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:

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

Getting the current option value:

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

Header: boost/asio/basic_raw_socket.hpp

Convenience header: boost/asio.hpp


PrevUpHomeNext