Home | Libraries | People | FAQ | More |
Inherited from socket_base.
Socket option for putting received out-of-band data inline.
typedef implementation_defined out_of_band_inline;
Implements the SOL_SOCKET/SO_OOBINLINE socket option.
Setting the option:
boost::asio::ip::tcp::socket socket(my_context); ... boost::asio::socket_base::out_of_band_inline option(true); socket.set_option(option);
Getting the current option value:
boost::asio::ip::tcp::socket socket(my_context); ... boost::asio::socket_base::out_of_band_inline option; socket.get_option(option); bool value = option.value();
Header: boost/asio/basic_raw_socket.hpp
Convenience header: boost/asio.hpp