asio C++ library

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:

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

Getting the current option value:

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

Header: asio/ip/tcp.hpp

Convenience header: asio.hpp


PrevUpHomeNext