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
g
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
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
m
n
p
r
s
t
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
transport.cpp
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
22
#include "
transport.hpp
"
23
24
namespace
ndn
{
25
26
Transport::Error::Error
(
const
boost::system::error_code& code,
const
std::string& msg)
27
:
std
::runtime_error(msg + (code.value() ?
" ("
+ code.category().message(code.value()) +
")"
:
""
))
28
{
29
}
30
31
Transport::Error::Error
(
const
std::string& msg)
32
:
std
::runtime_error(msg)
33
{
34
}
35
36
Transport::Transport
()
37
:
m_isConnected
(false)
38
,
m_isReceiving
(false)
39
{
40
}
41
42
void
43
Transport::connect
(
const
ReceiveCallback
& receiveCallback)
44
{
45
BOOST_ASSERT(receiveCallback !=
nullptr
);
46
47
m_receiveCallback
= receiveCallback;
48
}
49
50
}
// namespace ndn
ndn
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-strategy-choice-helper.hpp:34
ndn::Transport::Error::Error
Error(const boost::system::error_code &code, const std::string &msg)
Definition:
transport.cpp:26
std
STL namespace.
transport.hpp
ndn::Transport::m_receiveCallback
ReceiveCallback m_receiveCallback
Definition:
transport.hpp:117
ndn::Transport::Transport
Transport()
Definition:
transport.cpp:36
ndn::Transport::connect
virtual void connect(const ReceiveCallback &receiveCallback)
asynchronously open the connection
Definition:
transport.cpp:43
ndn::Transport::m_isReceiving
bool m_isReceiving
Definition:
transport.hpp:116
ndn::Transport::m_isConnected
bool m_isConnected
Definition:
transport.hpp:115
ndn::Transport::ReceiveCallback
function< void(const Block &wire)> ReceiveCallback
Definition:
transport.hpp:47
ndnSIM
ndn-cxx
src
transport
transport.cpp
Generated on Tue Aug 7 2018 16:19:17 for ndnSIM by
1.8.14