NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
network-address.cpp
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
24
#include "
network-address.hpp
"
25
26
namespace
ndn
{
27
namespace
net {
28
29
std::ostream&
30
operator<<
(std::ostream& os,
AddressScope
scope)
31
{
32
switch
(scope) {
33
case
AddressScope::NOWHERE
:
34
return
os <<
"nowhere"
;
35
case
AddressScope::HOST
:
36
return
os <<
"host"
;
37
case
AddressScope::LINK
:
38
return
os <<
"link"
;
39
case
AddressScope::GLOBAL
:
40
return
os <<
"global"
;
41
}
42
return
os;
43
}
44
45
NetworkAddress::NetworkAddress
(
AddressFamily
family,
46
boost::asio::ip::address
ip
,
47
boost::asio::ip::address broadcast,
48
uint8_t prefixLength,
49
AddressScope
scope,
50
uint32_t flags)
51
: m_family(family)
52
, m_ip(ip)
53
, m_broadcast(broadcast)
54
, m_prefixLength(prefixLength)
55
, m_scope(scope)
56
, m_flags(flags)
57
{
58
}
59
60
std::ostream&
61
operator<<
(std::ostream& os,
const
NetworkAddress
& addr)
62
{
63
return
os << addr.
getIp
() <<
'/'
<<
static_cast<
unsigned
int
>
(addr.
getPrefixLength
());
64
}
65
66
}
// namespace net
67
}
// namespace ndn
ndn
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-strategy-choice-helper.hpp:34
ndn::net::AddressScope
AddressScope
Definition:
network-address.hpp:39
ndn::net::NetworkAddress::getIp
boost::asio::ip::address getIp() const
Returns the IP address (v4 or v6)
Definition:
network-address.hpp:73
ndn::net::AddressScope::LINK
network-address.hpp
ndn::net::AddressFamily
AddressFamily
Definition:
network-address.hpp:33
ndn::net::AddressScope::GLOBAL
ndn::net::AddressScope::NOWHERE
ndn::net::NetworkAddress::getPrefixLength
uint8_t getPrefixLength() const
Returns the prefix length.
Definition:
network-address.hpp:89
ndn::net::NetworkAddress
Stores one IP address supported by a network interface.
Definition:
network-address.hpp:52
ndn::net::AddressScope::HOST
ndn::net::NetworkAddress::NetworkAddress
NetworkAddress(AddressFamily family, boost::asio::ip::address ip, boost::asio::ip::address broadcast, uint8_t prefixLength, AddressScope scope, uint32_t flags)
Definition:
network-address.cpp:45
boost::asio::ip
Definition:
tcp-transport.hpp:30
ndn::net::operator<<
std::ostream & operator<<(std::ostream &os, AddressScope scope)
Definition:
network-address.cpp:30
ndnSIM
ndn-cxx
src
net
network-address.cpp
Generated on Thu Nov 2 2017 03:30:28 for ndnSIM by
1.8.11