NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
+
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
p
q
r
s
t
u
v
w
+
Typedefs
a
b
c
d
e
f
h
i
k
l
n
o
p
q
r
s
t
u
v
+
Enumerations
a
b
c
d
f
i
k
l
n
p
q
r
s
t
u
+
Enumerator
a
b
c
d
e
f
h
i
k
l
m
n
o
p
q
r
s
t
u
v
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
+
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
~
+
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
+
Enumerator
a
c
d
e
i
k
l
m
n
p
r
s
u
w
+
Related Functions
b
c
d
e
f
g
i
k
l
m
n
o
p
s
v
+
Files
File List
+
File Members
+
All
a
c
d
e
f
g
h
i
k
l
m
n
p
r
s
t
u
v
w
+
Functions
c
f
h
m
r
s
u
w
+
Variables
a
c
d
f
g
i
k
l
n
p
r
s
t
u
Typedefs
+
Macros
d
e
f
i
l
m
n
p
r
s
u
v
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
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
Stores one IP address supported by a network interface.
Definition:
network-address.hpp:52
ndn::net::NetworkAddress::getPrefixLength
uint8_t getPrefixLength() const
Returns the prefix length.
Definition:
network-address.hpp:89
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
ndn::net::operator<<
std::ostream & operator<<(std::ostream &os, AddressScope scope)
Definition:
network-address.cpp:30
ndn::net
Definition:
link-type-helper.cpp:30
ndnSIM
ndn-cxx
src
net
network-address.cpp
Generated on Sun Feb 25 2018 13:27:05 for ndnSIM by
1.8.14