mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Refactor IP::Endpoint
This commit is contained in:
105
beast/net/IPAddressV6.h
Normal file
105
beast/net/IPAddressV6.h
Normal file
@@ -0,0 +1,105 @@
|
||||
//------------------------------------------------------------------------------
|
||||
/*
|
||||
This file is part of Beast: https://github.com/vinniefalco/Beast
|
||||
Copyright 2013, Vinnie Falco <vinnie.falco@gmail.com>
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted, provided that the above
|
||||
copyright notice and this permission notice appear in all copies.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
//==============================================================================
|
||||
|
||||
#ifndef BEAST_NET_IPADDRESSV6_H_INCLUDED
|
||||
#define BEAST_NET_IPADDRESSV6_H_INCLUDED
|
||||
|
||||
#include <string>
|
||||
#include <ios>
|
||||
#include <utility>
|
||||
|
||||
#include "../CStdInt.h"
|
||||
|
||||
namespace beast {
|
||||
namespace IP {
|
||||
|
||||
/** Represents a version 4 IP address. */
|
||||
struct AddressV6
|
||||
{
|
||||
// VFALCO TODO
|
||||
|
||||
/** Arithmetic comparison. */
|
||||
/** @{ */
|
||||
friend bool operator== (AddressV6 const&, AddressV6 const&)
|
||||
{ bassertfalse; return false; }
|
||||
friend bool operator< (AddressV6 const&, AddressV6 const&)
|
||||
{ bassertfalse; return false; }
|
||||
|
||||
friend bool operator!= (AddressV6 const& lhs, AddressV6 const& rhs)
|
||||
{ return ! (lhs == rhs); }
|
||||
friend bool operator> (AddressV6 const& lhs, AddressV6 const& rhs)
|
||||
{ return rhs < lhs; }
|
||||
friend bool operator<= (AddressV6 const& lhs, AddressV6 const& rhs)
|
||||
{ return ! (lhs > rhs); }
|
||||
friend bool operator>= (AddressV6 const& lhs, AddressV6 const& rhs)
|
||||
{ return ! (rhs > lhs); }
|
||||
/** @} */
|
||||
};
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
/** Returns `true` if this is a loopback address. */
|
||||
bool is_loopback (AddressV6 const& addr);
|
||||
|
||||
/** Returns `true` if the address is unspecified. */
|
||||
bool is_unspecified (AddressV6 const& addr);
|
||||
|
||||
/** Returns `true` if the address is a multicast address. */
|
||||
bool is_multicast (AddressV6 const& addr);
|
||||
|
||||
/** Returns `true` if the address is a private unroutable address. */
|
||||
bool is_private (AddressV6 const& addr);
|
||||
|
||||
/** Returns `true` if the address is a public routable address. */
|
||||
bool is_public (AddressV6 const& addr);
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
/** boost::hash support. */
|
||||
inline std::size_t hash_value (AddressV6 const&)
|
||||
{ bassertfalse; return 0; }
|
||||
|
||||
/** Returns the address represented as a string. */
|
||||
std::string to_string (AddressV6 const& addr);
|
||||
|
||||
/** Output stream conversion. */
|
||||
template <typename OutputStream>
|
||||
OutputStream& operator<< (OutputStream& os, AddressV6 const& addr)
|
||||
{ return os << to_string (addr); }
|
||||
|
||||
/** Input stream conversion. */
|
||||
std::istream& operator>> (std::istream& is, AddressV6& addr);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace std {
|
||||
template <typename T> struct hash;
|
||||
/** std::hash support. */
|
||||
template <>
|
||||
struct hash <beast::IP::AddressV6>
|
||||
{
|
||||
std::size_t operator() (beast::IP::AddressV6 const& addr) const
|
||||
{ return hash_value (addr); }
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user