Describes an IPv6 prefix. More...
#include <ipv6-address.h>
Public Member Functions | |
Ipv6Prefix () | |
Default constructor. More... | |
Ipv6Prefix (uint8_t prefix[16]) | |
Constructs an Ipv6Prefix by using the input 16 bytes. More... | |
Ipv6Prefix (char const *prefix) | |
Constructs an Ipv6Prefix by using the input string. More... | |
Ipv6Prefix (uint8_t prefix) | |
Constructs an Ipv6Prefix by using the input number of bits. More... | |
Ipv6Prefix (Ipv6Prefix const &prefix) | |
Copy constructor. More... | |
Ipv6Prefix (Ipv6Prefix const *prefix) | |
Copy constructor. More... | |
~Ipv6Prefix () | |
Destructor. More... | |
void | GetBytes (uint8_t buf[16]) const |
Get the bytes corresponding to the prefix. More... | |
uint8_t | GetPrefixLength () const |
Get prefix length. More... | |
bool | IsEqual (const Ipv6Prefix &other) const |
Comparison operation between two Ipv6Prefix. More... | |
bool | IsMatch (Ipv6Address a, Ipv6Address b) const |
If the Address match the type. More... | |
void | Print (std::ostream &os) const |
Print this address to the given output stream. More... | |
Static Public Member Functions | |
static Ipv6Prefix | GetLoopback () |
Get the loopback prefix ( /128). More... | |
static Ipv6Prefix | GetOnes () |
Get the "all-1" IPv6 mask (ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff). More... | |
static Ipv6Prefix | GetZero () |
Get the zero prefix ( /0). More... | |
Private Attributes | |
uint8_t | m_prefix [16] |
The prefix representation. More... | |
Friends | |
bool | operator!= (Ipv6Prefix const &a, Ipv6Prefix const &b) |
Not equal to operator. More... | |
bool | operator== (Ipv6Prefix const &a, Ipv6Prefix const &b) |
Equal to operator. More... | |
Describes an IPv6 prefix.
It is just a bitmask like Ipv4Mask.
Definition at line 387 of file ipv6-address.h.
ns3::Ipv6Prefix::Ipv6Prefix | ( | ) |
Default constructor.
Definition at line 838 of file ipv6-address.cc.
References m_prefix, and NS_LOG_FUNCTION.
ns3::Ipv6Prefix::Ipv6Prefix | ( | uint8_t | prefix[16] | ) |
Constructs an Ipv6Prefix by using the input 16 bytes.
prefix | the 128-bit prefix |
Definition at line 850 of file ipv6-address.cc.
References m_prefix, and NS_LOG_FUNCTION.
ns3::Ipv6Prefix::Ipv6Prefix | ( | char const * | prefix | ) |
Constructs an Ipv6Prefix by using the input string.
prefix | the 128-bit prefix |
Definition at line 844 of file ipv6-address.cc.
References ns3::AsciiToIpv6Host(), m_prefix, and NS_LOG_FUNCTION.
ns3::Ipv6Prefix::Ipv6Prefix | ( | uint8_t | prefix | ) |
Constructs an Ipv6Prefix by using the input number of bits.
prefix | number of bits of the prefix (0 - 128) |
Definition at line 856 of file ipv6-address.cc.
References m_prefix, NS_ASSERT, and NS_LOG_FUNCTION.
ns3::Ipv6Prefix::Ipv6Prefix | ( | Ipv6Prefix const & | prefix | ) |
Copy constructor.
prefix | Ipv6Prefix object |
Definition at line 891 of file ipv6-address.cc.
References m_prefix.
ns3::Ipv6Prefix::Ipv6Prefix | ( | Ipv6Prefix const * | prefix | ) |
Copy constructor.
prefix | Ipv6Prefix pointer |
Definition at line 896 of file ipv6-address.cc.
References m_prefix.
ns3::Ipv6Prefix::~Ipv6Prefix | ( | ) |
void ns3::Ipv6Prefix::GetBytes | ( | uint8_t | buf[16] | ) | const |
Get the bytes corresponding to the prefix.
buf | buffer to store the data |
Definition at line 956 of file ipv6-address.cc.
References m_prefix, and NS_LOG_FUNCTION.
Referenced by ns3::Ipv6AddressGeneratorImpl::Init(), and ns3::Ipv6AddressGeneratorImpl::PrefixToIndex().
|
static |
Get the loopback prefix ( /128).
Definition at line 935 of file ipv6-address.cc.
References NS_LOG_FUNCTION_NOARGS.
|
static |
Get the "all-1" IPv6 mask (ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff).
Definition at line 942 of file ipv6-address.cc.
References NS_LOG_FUNCTION_NOARGS.
Referenced by ns3::Ipv6StaticRouting::AddHostRouteTo(), ns3::Ipv6RoutingTableEntry::CreateHostRouteTo(), and ns3::Ipv6RoutingTableEntry::IsHost().
uint8_t ns3::Ipv6Prefix::GetPrefixLength | ( | void | ) | const |
Get prefix length.
Definition at line 962 of file ipv6-address.cc.
References m_prefix, and NS_LOG_FUNCTION.
Referenced by ns3::Ipv6StaticRouting::GetDefaultRoute(), ns3::Ipv6StaticRouting::LookupStatic(), ns3::operator<<(), Print(), and ns3::Ipv6StaticRouting::PrintRoutingTable().
|
static |
Get the zero prefix ( /0).
Definition at line 949 of file ipv6-address.cc.
References NS_LOG_FUNCTION_NOARGS.
Referenced by ns3::Ipv6StaticRouting::SetDefaultRoute().
bool ns3::Ipv6Prefix::IsEqual | ( | const Ipv6Prefix & | other | ) | const |
Comparison operation between two Ipv6Prefix.
other | the IPv6 prefix to which to compare this prefix |
Definition at line 982 of file ipv6-address.cc.
References m_prefix.
Referenced by ns3::Ipv6RoutingTableEntry::IsHost().
bool ns3::Ipv6Prefix::IsMatch | ( | Ipv6Address | a, |
Ipv6Address | b | ||
) | const |
If the Address match the type.
a | a first address |
b | a second address |
Definition at line 907 of file ipv6-address.cc.
References ns3::Ipv6Address::GetBytes(), m_prefix, and NS_LOG_FUNCTION.
Referenced by ns3::Ipv6Interface::GetAddressMatchingDestination(), ns3::Ipv6StaticRouting::HasNetworkDest(), and ns3::Ipv6StaticRouting::LookupStatic().
void ns3::Ipv6Prefix::Print | ( | std::ostream & | os | ) | const |
Print this address to the given output stream.
The print format is in the typical "2001:660:4701::1".
os | the output stream to which this Ipv6Address is printed |
Definition at line 928 of file ipv6-address.cc.
References GetPrefixLength(), and NS_LOG_FUNCTION.
Referenced by ns3::operator<<().
|
friend |
Not equal to operator.
a | the first operand |
b | the first operand |
Definition at line 577 of file ipv6-address.h.
|
friend |
Equal to operator.
a | the first operand |
b | the first operand |
Definition at line 572 of file ipv6-address.h.
|
private |
The prefix representation.
Definition at line 488 of file ipv6-address.h.
Referenced by GetBytes(), GetPrefixLength(), Ipv6Prefix(), IsEqual(), IsMatch(), ns3::operator!=(), and ns3::operator==().