Networking TS

PrevUpHomeNext

socket_base::enable_connection_aborted

Socket option to report aborted connections on accept.

typedef implementation_defined enable_connection_aborted;

Implements a custom socket option that determines whether or not an accept operation is permitted to fail with std::experimental::net::v1::error::connection_aborted. By default the option is false.

Examples

Setting the option:

std::experimental::net::ip::tcp::acceptor acceptor(io_context);
...
std::experimental::net::socket_base::enable_connection_aborted option(true);
acceptor.set_option(option);

Getting the current option value:

std::experimental::net::ip::tcp::acceptor acceptor(io_context);
...
std::experimental::net::socket_base::enable_connection_aborted option;
acceptor.get_option(option);
bool is_set = option.value();

PrevUpHomeNext