Networking TS

PrevUpHomeNext

ip::tcp::no_delay

Socket option for disabling the Nagle algorithm.

typedef implementation_defined no_delay;

Implements the IPPROTO_TCP/TCP_NODELAY socket option.

Examples

Setting the option:

std::experimental::net::ip::tcp::socket socket(io_context);
...
std::experimental::net::ip::tcp::no_delay option(true);
socket.set_option(option);

Getting the current option value:

std::experimental::net::ip::tcp::socket socket(io_context);
...
std::experimental::net::ip::tcp::no_delay option;
socket.get_option(option);
bool is_set = option.value();

PrevUpHomeNext