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:
std::experimental::net::ip::tcp::socket socket(io_context); ... std::experimental::net::socket_base::out_of_band_inline option(true); socket.set_option(option);
Getting the current option value:
std::experimental::net::ip::tcp::socket socket(io_context); ... std::experimental::net::socket_base::out_of_band_inline option; socket.get_option(option); bool value = option.value();