Boost
C++ Libraries
...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
You've currently chosen the 1.91.0 version. If a newer release comes out, you will continue to view the 1.91.0 version, not the new latest release.
Socket option for disabling the Nagle algorithm.
typedef implementation_defined no_delay;
Implements the IPPROTO_TCP/TCP_NODELAY socket option.
Setting the option:
boost::asio::ip::tcp::socket socket(my_context); ... boost::asio::ip::tcp::no_delay option(true); socket.set_option(option);
Getting the current option value:
boost::asio::ip::tcp::socket socket(my_context); ... boost::asio::ip::tcp::no_delay option; socket.get_option(option); bool is_set = option.value();
Header: boost/asio/ip/tcp.hpp
Convenience header: boost/asio.hpp