NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.0: 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
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
r
s
t
u
v
w
+
Typedefs
a
b
c
d
e
f
i
l
m
n
o
p
q
r
s
t
u
v
Enumerations
+
Enumerator
a
b
c
d
e
f
h
i
k
l
m
n
o
p
q
r
s
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
h
i
k
l
m
n
o
p
q
r
s
t
u
w
+
Typedefs
a
b
c
d
e
f
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
+
Enumerator
a
d
e
f
g
i
k
l
m
n
p
r
s
u
w
+
Related Functions
b
c
d
f
i
k
l
n
o
p
s
+
Files
File List
+
File Members
+
All
a
b
c
d
e
f
g
h
k
l
m
n
p
r
s
u
v
w
+
Functions
c
f
h
m
r
s
u
w
+
Variables
a
c
d
g
k
l
n
p
r
s
Typedefs
+
Macros
b
d
e
l
m
n
p
r
s
u
v
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
network.hpp
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
26
#ifndef NFD_CORE_NETWORK_HPP
27
#define NFD_CORE_NETWORK_HPP
28
29
#include <boost/asio.hpp>
30
#include <boost/utility/value_init.hpp>
31
#include <boost/lexical_cast.hpp>
32
33
namespace
nfd
{
34
35
class
Network
36
{
37
public
:
38
Network
()
39
{
40
}
41
42
Network
(
const
boost::asio::ip::address& minAddress,
43
const
boost::asio::ip::address& maxAddress)
44
: m_minAddress(minAddress)
45
, m_maxAddress(maxAddress)
46
{
47
}
48
49
void
50
print
(std::ostream& os)
const
;
51
52
bool
53
doesContain
(
const
boost::asio::ip::address& address)
const
54
{
55
return
(m_minAddress <= address && address <= m_maxAddress);
56
}
57
58
static
const
Network
&
59
getMaxRangeV4
();
60
61
static
const
Network
&
62
getMaxRangeV6
();
63
64
bool
65
operator==
(
const
Network
& rhs)
const
66
{
67
return
m_minAddress == rhs.m_minAddress && m_maxAddress == rhs.m_maxAddress;
68
}
69
70
bool
71
operator!=
(
const
Network
& rhs)
const
72
{
73
return
!(*
this
== rhs);
74
}
75
76
private
:
77
boost::asio::ip::address m_minAddress;
78
boost::asio::ip::address m_maxAddress;
79
80
friend
std::istream&
81
operator>>
(std::istream& is,
Network
& network);
82
83
friend
std::ostream&
84
operator<<
(std::ostream& os,
const
Network
& network);
85
};
86
87
std::ostream&
88
operator<<
(std::ostream& os,
const
Network
& network);
89
90
std::istream&
91
operator>>
(std::istream& is,
Network
& network);
92
93
}
// namespace nfd
94
95
#endif // NFD_CORE_NETWORK_HPP
nfd::Network::Network
Network(const boost::asio::ip::address &minAddress, const boost::asio::ip::address &maxAddress)
Definition:
network.hpp:42
nfd::Network::Network
Network()
Definition:
network.hpp:38
nfd::Network::operator!=
bool operator!=(const Network &rhs) const
Definition:
network.hpp:71
nfd::Network::getMaxRangeV4
static const Network & getMaxRangeV4()
Definition:
network.cpp:37
nfd
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-common.hpp:40
nfd::Network::getMaxRangeV6
static const Network & getMaxRangeV6()
Definition:
network.cpp:45
nfd::Network::print
void print(std::ostream &os) const
Definition:
network.cpp:31
nfd::Network::operator>>
friend std::istream & operator>>(std::istream &is, Network &network)
Definition:
network.cpp:65
nfd::Network
Definition:
network.hpp:35
nfd::Network::operator==
bool operator==(const Network &rhs) const
Definition:
network.hpp:65
nfd::Network::operator<<
friend std::ostream & operator<<(std::ostream &os, const Network &network)
Definition:
network.cpp:58
nfd::Network::doesContain
bool doesContain(const boost::asio::ip::address &address) const
Definition:
network.hpp:53
ndnSIM
NFD
core
network.hpp
Generated on Sat Nov 12 2016 16:02:53 for ndnSIM by
1.8.12