A Discrete-Event Network Simulator
lorawan @ (+)
Home
Tutorials ▼
English
Documentation ▼
Installation
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
Toggle main menu visibility
Main Page
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
Typedefs
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
Enumerations
a
b
c
d
e
f
g
h
j
l
m
n
o
p
q
r
s
t
w
Enumerator
a
b
c
d
e
f
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
Related Symbols
:
a
b
c
d
e
g
h
i
j
l
m
n
o
p
q
r
s
t
u
w
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
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
x
y
z
Typedefs
Enumerations
Enumerator
e
l
v
Macros
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
▼
ns-3
►
ns-3 Documentation
►
All Environment Variables
Todo List
Deprecated List
Bug List
►
Topics
►
Namespaces
►
Classes
▼
Files
▼
File List
►
doc
►
examples
▼
src
►
antenna
►
aodv
►
applications
►
bridge
►
brite
►
buildings
►
click
►
config-store
►
core
►
csma
►
csma-layout
►
dsdv
►
dsr
►
energy
►
fd-net-device
►
flow-monitor
►
internet
▼
internet-apps
►
doc
►
examples
▼
helper
dhcp-helper.cc
dhcp-helper.h
ping-helper.cc
ping-helper.h
radvd-helper.cc
radvd-helper.h
v4traceroute-helper.cc
v4traceroute-helper.h
►
model
►
test
►
lorawan
►
lr-wpan
►
lte
►
mesh
►
mobility
►
mpi
►
netanim
►
network
►
nix-vector-routing
►
olsr
►
openflow
►
point-to-point
►
point-to-point-layout
►
propagation
►
sixlowpan
►
spectrum
►
stats
►
tap-bridge
►
test
►
topology-read
►
traffic-control
►
uan
►
virtual-net-device
►
visualizer
►
wifi
►
wimax
►
zigbee
►
utils
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
v4traceroute-helper.h
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2019 Ritsumeikan University, Shiga, Japan
3
*
4
* SPDX-License-Identifier: GPL-2.0-only
5
*
6
*
7
* Alberto Gallegos Ramonet <ramonet@fc.ritsumei.ac.jp>
8
*
9
*/
10
11
#ifndef V4TRACEROUTE_HELPER_H
12
#define V4TRACEROUTE_HELPER_H
13
14
#include "ns3/application-helper.h"
15
16
namespace
ns3
17
{
18
19
class
OutputStreamWrapper;
20
21
/**
22
* @ingroup v4traceroute
23
* @brief Create a IPv4 traceroute application and associate it to a node
24
*
25
* This class creates one or multiple instances of ns3::V4TraceRoute and associates
26
* it/them to one/multiple node(s).
27
*/
28
class
V4TraceRouteHelper
:
public
ApplicationHelper
29
{
30
public
:
31
/**
32
* Create a V4TraceRouteHelper which is used to make life easier for people wanting
33
* to use TraceRoute
34
*
35
* @param remote The address which should be traced
36
*/
37
V4TraceRouteHelper
(
const
Ipv4Address
& remote);
38
39
/**
40
* @brief Print the resulting trace routes from given node.
41
* @param node The origin node where the traceroute is initiated.
42
* @param stream The outputstream used to print the resulting traced routes.
43
*/
44
static
void
PrintTraceRouteAt
(
Ptr<Node>
node,
Ptr<OutputStreamWrapper>
stream);
45
};
28
class
V4TraceRouteHelper
:
public
ApplicationHelper
{
…
};
46
47
}
// namespace ns3
48
49
#endif
/* V4TRACEROUTE_HELPER_H */
ns3::ApplicationHelper
A helper to make it easier to instantiate an application on a set of nodes.
Definition
application-helper.h:28
ns3::Ipv4Address
Ipv4 addresses are stored in host order in this class.
Definition
ipv4-address.h:31
ns3::Ptr
Smart pointer class similar to boost::intrusive_ptr.
Definition
mpi-test-fixtures.h:37
ns3::V4TraceRouteHelper
Create a IPv4 traceroute application and associate it to a node.
Definition
v4traceroute-helper.h:29
ns3::V4TraceRouteHelper::PrintTraceRouteAt
static void PrintTraceRouteAt(Ptr< Node > node, Ptr< OutputStreamWrapper > stream)
Print the resulting trace routes from given node.
Definition
v4traceroute-helper.cc:26
ns3::V4TraceRouteHelper::V4TraceRouteHelper
V4TraceRouteHelper(const Ipv4Address &remote)
Create a V4TraceRouteHelper which is used to make life easier for people wanting to use TraceRoute.
Definition
v4traceroute-helper.cc:19
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
src
internet-apps
helper
v4traceroute-helper.h
Generated on Tue Apr 8 2025 15:27:12 for ns-3 by
1.11.0