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.90.0 version. If a newer release comes out, you will continue to view the 1.90.0 version, not the new latest release.
Socket option for determining whether an IPv6 socket supports IPv6 communication only.
typedef implementation_defined v6_only;
Implements the IPPROTO_IPV6/IPV6_V6ONLY socket option.
Setting the option:
boost::asio::ip::tcp::socket socket(my_context); ... boost::asio::ip::v6_only option(true); socket.set_option(option);
Getting the current option value:
boost::asio::ip::tcp::socket socket(my_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