Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

basic_raw_socket::out_of_band_inline

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.

Examples

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();
Requirements

Header: boost/asio/basic_raw_socket.hpp

Convenience header: boost/asio.hpp


PrevUpHomeNext