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
This is an older version of Boost and was released in 2018. The current version is 1.89.0.
Socket option for determining whether an IPv6 socket supports IPv6 communication only.
typedef implementation_defined v6_only;
Implements the IPPROTO_IPV6/IP_V6ONLY socket option.
Setting the option:
boost::asio::ip::tcp::socket socket(io_context); ... boost::asio::ip::v6_only option(true); socket.set_option(option);
Getting the current option value:
boost::asio::ip::tcp::socket socket(io_context); ... boost::asio::ip::v6_only option; socket.get_option(option); bool v6_only = option.value();
Header: boost/asio/ip/v6_only.hpp
Convenience header: boost/asio.hpp