00001 // 00002 // v6_only.hpp 00003 // ~~~~~~~~~~~ 00004 // 00005 // Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com) 00006 // 00007 // Distributed under the Boost Software License, Version 1.0. (See accompanying 00008 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 00009 // 00010 00011 #ifndef ASIO_IP_V6_ONLY_HPP 00012 #define ASIO_IP_V6_ONLY_HPP 00013 00014 #if defined(_MSC_VER) && (_MSC_VER >= 1200) 00015 # pragma once 00016 #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) 00017 00018 #include "asio/detail/push_options.hpp" 00019 00020 #include "asio/detail/socket_option.hpp" 00021 00022 namespace asio { 00023 namespace ip { 00024 00027 00052 #if defined(GENERATING_DOCUMENTATION) 00053 typedef implementation_defined v6_only; 00054 #elif defined(IPV6_V6ONLY) 00055 typedef asio::detail::socket_option::boolean< 00056 IPPROTO_IPV6, IPV6_V6ONLY> v6_only; 00057 #else 00058 typedef asio::detail::socket_option::boolean< 00059 asio::detail::custom_socket_option_level, 00060 asio::detail::always_fail_option> v6_only; 00061 #endif 00062 00063 } // namespace ip 00064 } // namespace asio 00065 00066 #include "asio/detail/pop_options.hpp" 00067 00068 #endif // ASIO_IP_V6_ONLY_HPP