/usr/include/asio/ip/address_v6.hpp is in libasio-dev 1.4.1-3ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 | //
// address_v6.hpp
// ~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef ASIO_IP_ADDRESS_V6_HPP
#define ASIO_IP_ADDRESS_V6_HPP
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
# pragma once
#endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
#include "asio/detail/push_options.hpp"
#include "asio/detail/push_options.hpp"
#include <cstring>
#include <string>
#include <stdexcept>
#include <typeinfo>
#include <boost/array.hpp>
#include <boost/throw_exception.hpp>
#include "asio/detail/pop_options.hpp"
#include "asio/error.hpp"
#include "asio/detail/socket_ops.hpp"
#include "asio/detail/socket_types.hpp"
#include "asio/detail/throw_error.hpp"
#include "asio/ip/address_v4.hpp"
namespace asio {
namespace ip {
/// Implements IP version 6 style addresses.
/**
* The asio::ip::address_v6 class provides the ability to use and
* manipulate IP version 6 addresses.
*
* @par Thread Safety
* @e Distinct @e objects: Safe.@n
* @e Shared @e objects: Unsafe.
*/
class address_v6
{
public:
/// The type used to represent an address as an array of bytes.
typedef boost::array<unsigned char, 16> bytes_type;
/// Default constructor.
address_v6()
: scope_id_(0)
{
asio::detail::in6_addr_type tmp_addr = IN6ADDR_ANY_INIT;
addr_ = tmp_addr;
}
/// Construct an address from raw bytes and scope ID.
explicit address_v6(const bytes_type& bytes, unsigned long scope_id = 0)
: scope_id_(scope_id)
{
#if UCHAR_MAX > 0xFF
for (std::size_t i = 0; i < bytes.size(); ++i)
{
if (bytes[i] > 0xFF)
{
std::out_of_range ex("address_v6 from bytes_type");
boost::throw_exception(ex);
}
}
#endif // UCHAR_MAX > 0xFF
using namespace std; // For memcpy.
memcpy(addr_.s6_addr, bytes.elems, 16);
}
/// Copy constructor.
address_v6(const address_v6& other)
: addr_(other.addr_),
scope_id_(other.scope_id_)
{
}
/// Assign from another address.
address_v6& operator=(const address_v6& other)
{
addr_ = other.addr_;
scope_id_ = other.scope_id_;
return *this;
}
/// The scope ID of the address.
/**
* Returns the scope ID associated with the IPv6 address.
*/
unsigned long scope_id() const
{
return scope_id_;
}
/// The scope ID of the address.
/**
* Modifies the scope ID associated with the IPv6 address.
*/
void scope_id(unsigned long id)
{
scope_id_ = id;
}
/// Get the address in bytes.
bytes_type to_bytes() const
{
using namespace std; // For memcpy.
bytes_type bytes;
memcpy(bytes.elems, addr_.s6_addr, 16);
return bytes;
}
/// Get the address as a string.
std::string to_string() const
{
asio::error_code ec;
std::string addr = to_string(ec);
asio::detail::throw_error(ec);
return addr;
}
/// Get the address as a string.
std::string to_string(asio::error_code& ec) const
{
char addr_str[asio::detail::max_addr_v6_str_len];
const char* addr =
asio::detail::socket_ops::inet_ntop(AF_INET6, &addr_, addr_str,
asio::detail::max_addr_v6_str_len, scope_id_, ec);
if (addr == 0)
return std::string();
return addr;
}
/// Create an address from an IP address string.
static address_v6 from_string(const char* str)
{
asio::error_code ec;
address_v6 addr = from_string(str, ec);
asio::detail::throw_error(ec);
return addr;
}
/// Create an address from an IP address string.
static address_v6 from_string(const char* str, asio::error_code& ec)
{
address_v6 tmp;
if (asio::detail::socket_ops::inet_pton(
AF_INET6, str, &tmp.addr_, &tmp.scope_id_, ec) <= 0)
return address_v6();
return tmp;
}
/// Create an address from an IP address string.
static address_v6 from_string(const std::string& str)
{
return from_string(str.c_str());
}
/// Create an address from an IP address string.
static address_v6 from_string(const std::string& str,
asio::error_code& ec)
{
return from_string(str.c_str(), ec);
}
/// Converts an IPv4-mapped or IPv4-compatible address to an IPv4 address.
address_v4 to_v4() const
{
if (!is_v4_mapped() && !is_v4_compatible())
{
std::bad_cast ex;
boost::throw_exception(ex);
}
address_v4::bytes_type v4_bytes = { { addr_.s6_addr[12],
addr_.s6_addr[13], addr_.s6_addr[14], addr_.s6_addr[15] } };
return address_v4(v4_bytes);
}
/// Determine whether the address is a loopback address.
bool is_loopback() const
{
#if defined(__BORLANDC__)
return ((addr_.s6_addr[0] == 0) && (addr_.s6_addr[1] == 0)
&& (addr_.s6_addr[2] == 0) && (addr_.s6_addr[3] == 0)
&& (addr_.s6_addr[4] == 0) && (addr_.s6_addr[5] == 0)
&& (addr_.s6_addr[6] == 0) && (addr_.s6_addr[7] == 0)
&& (addr_.s6_addr[8] == 0) && (addr_.s6_addr[9] == 0)
&& (addr_.s6_addr[10] == 0) && (addr_.s6_addr[11] == 0)
&& (addr_.s6_addr[12] == 0) && (addr_.s6_addr[13] == 0)
&& (addr_.s6_addr[14] == 0) && (addr_.s6_addr[15] == 1));
#else
using namespace asio::detail;
return IN6_IS_ADDR_LOOPBACK(&addr_) != 0;
#endif
}
/// Determine whether the address is unspecified.
bool is_unspecified() const
{
#if defined(__BORLANDC__)
return ((addr_.s6_addr[0] == 0) && (addr_.s6_addr[1] == 0)
&& (addr_.s6_addr[2] == 0) && (addr_.s6_addr[3] == 0)
&& (addr_.s6_addr[4] == 0) && (addr_.s6_addr[5] == 0)
&& (addr_.s6_addr[6] == 0) && (addr_.s6_addr[7] == 0)
&& (addr_.s6_addr[8] == 0) && (addr_.s6_addr[9] == 0)
&& (addr_.s6_addr[10] == 0) && (addr_.s6_addr[11] == 0)
&& (addr_.s6_addr[12] == 0) && (addr_.s6_addr[13] == 0)
&& (addr_.s6_addr[14] == 0) && (addr_.s6_addr[15] == 0));
#else
using namespace asio::detail;
return IN6_IS_ADDR_UNSPECIFIED(&addr_) != 0;
#endif
}
/// Determine whether the address is link local.
bool is_link_local() const
{
using namespace asio::detail;
return IN6_IS_ADDR_LINKLOCAL(&addr_) != 0;
}
/// Determine whether the address is site local.
bool is_site_local() const
{
using namespace asio::detail;
return IN6_IS_ADDR_SITELOCAL(&addr_) != 0;
}
/// Determine whether the address is a mapped IPv4 address.
bool is_v4_mapped() const
{
using namespace asio::detail;
return IN6_IS_ADDR_V4MAPPED(&addr_) != 0;
}
/// Determine whether the address is an IPv4-compatible address.
bool is_v4_compatible() const
{
using namespace asio::detail;
return IN6_IS_ADDR_V4COMPAT(&addr_) != 0;
}
/// Determine whether the address is a multicast address.
bool is_multicast() const
{
using namespace asio::detail;
return IN6_IS_ADDR_MULTICAST(&addr_) != 0;
}
/// Determine whether the address is a global multicast address.
bool is_multicast_global() const
{
using namespace asio::detail;
return IN6_IS_ADDR_MC_GLOBAL(&addr_) != 0;
}
/// Determine whether the address is a link-local multicast address.
bool is_multicast_link_local() const
{
using namespace asio::detail;
return IN6_IS_ADDR_MC_LINKLOCAL(&addr_) != 0;
}
/// Determine whether the address is a node-local multicast address.
bool is_multicast_node_local() const
{
using namespace asio::detail;
return IN6_IS_ADDR_MC_NODELOCAL(&addr_) != 0;
}
/// Determine whether the address is a org-local multicast address.
bool is_multicast_org_local() const
{
using namespace asio::detail;
return IN6_IS_ADDR_MC_ORGLOCAL(&addr_) != 0;
}
/// Determine whether the address is a site-local multicast address.
bool is_multicast_site_local() const
{
using namespace asio::detail;
return IN6_IS_ADDR_MC_SITELOCAL(&addr_) != 0;
}
/// Compare two addresses for equality.
friend bool operator==(const address_v6& a1, const address_v6& a2)
{
using namespace std; // For memcmp.
return memcmp(&a1.addr_, &a2.addr_,
sizeof(asio::detail::in6_addr_type)) == 0
&& a1.scope_id_ == a2.scope_id_;
}
/// Compare two addresses for inequality.
friend bool operator!=(const address_v6& a1, const address_v6& a2)
{
using namespace std; // For memcmp.
return memcmp(&a1.addr_, &a2.addr_,
sizeof(asio::detail::in6_addr_type)) != 0
|| a1.scope_id_ != a2.scope_id_;
}
/// Compare addresses for ordering.
friend bool operator<(const address_v6& a1, const address_v6& a2)
{
using namespace std; // For memcmp.
int memcmp_result = memcmp(&a1.addr_, &a2.addr_,
sizeof(asio::detail::in6_addr_type));
if (memcmp_result < 0)
return true;
if (memcmp_result > 0)
return false;
return a1.scope_id_ < a2.scope_id_;
}
/// Compare addresses for ordering.
friend bool operator>(const address_v6& a1, const address_v6& a2)
{
return a2 < a1;
}
/// Compare addresses for ordering.
friend bool operator<=(const address_v6& a1, const address_v6& a2)
{
return !(a2 < a1);
}
/// Compare addresses for ordering.
friend bool operator>=(const address_v6& a1, const address_v6& a2)
{
return !(a1 < a2);
}
/// Obtain an address object that represents any address.
static address_v6 any()
{
return address_v6();
}
/// Obtain an address object that represents the loopback address.
static address_v6 loopback()
{
address_v6 tmp;
asio::detail::in6_addr_type tmp_addr = IN6ADDR_LOOPBACK_INIT;
tmp.addr_ = tmp_addr;
return tmp;
}
/// Create an IPv4-mapped IPv6 address.
static address_v6 v4_mapped(const address_v4& addr)
{
address_v4::bytes_type v4_bytes = addr.to_bytes();
bytes_type v6_bytes = { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xFF, 0xFF,
v4_bytes[0], v4_bytes[1], v4_bytes[2], v4_bytes[3] } };
return address_v6(v6_bytes);
}
/// Create an IPv4-compatible IPv6 address.
static address_v6 v4_compatible(const address_v4& addr)
{
address_v4::bytes_type v4_bytes = addr.to_bytes();
bytes_type v6_bytes = { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
v4_bytes[0], v4_bytes[1], v4_bytes[2], v4_bytes[3] } };
return address_v6(v6_bytes);
}
private:
// The underlying IPv6 address.
asio::detail::in6_addr_type addr_;
// The scope ID associated with the address.
unsigned long scope_id_;
};
/// Output an address as a string.
/**
* Used to output a human-readable string for a specified address.
*
* @param os The output stream to which the string will be written.
*
* @param addr The address to be written.
*
* @return The output stream.
*
* @relates asio::ip::address_v6
*/
template <typename Elem, typename Traits>
std::basic_ostream<Elem, Traits>& operator<<(
std::basic_ostream<Elem, Traits>& os, const address_v6& addr)
{
asio::error_code ec;
std::string s = addr.to_string(ec);
if (ec)
{
if (os.exceptions() & std::ios::failbit)
asio::detail::throw_error(ec);
else
os.setstate(std::ios_base::failbit);
}
else
for (std::string::iterator i = s.begin(); i != s.end(); ++i)
os << os.widen(*i);
return os;
}
} // namespace ip
} // namespace asio
#include "asio/detail/pop_options.hpp"
#endif // ASIO_IP_ADDRESS_V6_HPP
|