asio C++ library

PrevUpHomeNext

socket_base::out_of_band_inline

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:

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

Getting the current option value:

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

Header: asio/socket_base.hpp

Convenience header: asio.hpp


PrevUpHomeNext