A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
point-to-point-helper.h
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2008 INRIA
4
*
5
* This program is free software; you can redistribute it and/or modify
6
* it under the terms of the GNU General Public License version 2 as
7
* published by the Free Software Foundation;
8
*
9
* This program is distributed in the hope that it will be useful,
10
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
* GNU General Public License for more details.
13
*
14
* You should have received a copy of the GNU General Public License
15
* along with this program; if not, write to the Free Software
16
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
*
18
* Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
19
*/
20
#ifndef POINT_TO_POINT_HELPER_H
21
#define POINT_TO_POINT_HELPER_H
22
23
#include <string>
24
25
#include "ns3/object-factory.h"
26
#include "ns3/net-device-container.h"
27
#include "ns3/node-container.h"
28
29
#include "ns3/trace-helper.h"
30
31
namespace
ns3
{
32
33
class
NetDevice;
34
class
Node;
35
43
class
PointToPointHelper
:
public
PcapHelperForDevice
,
44
public
AsciiTraceHelperForDevice
45
{
46
public
:
51
PointToPointHelper
();
52
virtual
~PointToPointHelper
() {}
53
72
void
SetQueue
(std::string type,
73
std::string n1 =
""
,
const
AttributeValue
&v1 =
EmptyAttributeValue
(),
74
std::string n2 =
""
,
const
AttributeValue
&v2 =
EmptyAttributeValue
(),
75
std::string n3 =
""
,
const
AttributeValue
&v3 =
EmptyAttributeValue
(),
76
std::string n4 =
""
,
const
AttributeValue
&v4 =
EmptyAttributeValue
());
77
88
void
SetDeviceAttribute
(std::string name,
const
AttributeValue
&value);
89
100
void
SetChannelAttribute
(std::string name,
const
AttributeValue
&value);
101
113
NetDeviceContainer
Install
(
NodeContainer
c);
114
124
NetDeviceContainer
Install
(
Ptr<Node>
a,
Ptr<Node>
b);
125
133
NetDeviceContainer
Install
(
Ptr<Node>
a, std::string bName);
134
142
NetDeviceContainer
Install
(std::string aName,
Ptr<Node>
b);
143
151
NetDeviceContainer
Install
(std::string aNode, std::string bNode);
152
153
private
:
165
virtual
void
EnablePcapInternal
(std::string prefix,
Ptr<NetDevice>
nd,
bool
promiscuous,
bool
explicitFilename);
166
178
virtual
void
EnableAsciiInternal
(
179
Ptr<OutputStreamWrapper>
stream,
180
std::string prefix,
181
Ptr<NetDevice>
nd,
182
bool
explicitFilename);
183
184
ObjectFactory
m_queueFactory
;
185
ObjectFactory
m_channelFactory
;
186
ObjectFactory
m_deviceFactory
;
187
};
188
189
}
// namespace ns3
190
191
#endif
/* POINT_TO_POINT_HELPER_H */
ns3::NetDeviceContainer
holds a vector of ns3::NetDevice pointers
Definition:
net-device-container.h:42
ns3::PointToPointHelper::m_channelFactory
ObjectFactory m_channelFactory
Channel Factory.
Definition:
point-to-point-helper.h:185
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::PointToPointHelper::SetQueue
void SetQueue(std::string type, std::string n1="", const AttributeValue &v1=EmptyAttributeValue(), std::string n2="", const AttributeValue &v2=EmptyAttributeValue(), std::string n3="", const AttributeValue &v3=EmptyAttributeValue(), std::string n4="", const AttributeValue &v4=EmptyAttributeValue())
Each point to point net device must have a queue to pass packets through.
Definition:
point-to-point-helper.cc:53
ns3::PointToPointHelper::SetDeviceAttribute
void SetDeviceAttribute(std::string name, const AttributeValue &value)
Set an attribute value to be propagated to each NetDevice created by the helper.
Definition:
point-to-point-helper.cc:69
ns3::PointToPointHelper::SetChannelAttribute
void SetChannelAttribute(std::string name, const AttributeValue &value)
Set an attribute value to be propagated to each Channel created by the helper.
Definition:
point-to-point-helper.cc:75
ns3::AttributeValue
Hold a value for an Attribute.
Definition:
attribute.h:69
ns3::PointToPointHelper::Install
NetDeviceContainer Install(NodeContainer c)
Definition:
point-to-point-helper.cc:222
ns3::PointToPointHelper::EnableAsciiInternal
virtual void EnableAsciiInternal(Ptr< OutputStreamWrapper > stream, std::string prefix, Ptr< NetDevice > nd, bool explicitFilename)
Enable ascii trace output on the indicated net device.
Definition:
point-to-point-helper.cc:113
ns3::Ptr< Node >
ns3::PointToPointHelper::EnablePcapInternal
virtual void EnablePcapInternal(std::string prefix, Ptr< NetDevice > nd, bool promiscuous, bool explicitFilename)
Enable pcap output the indicated net device.
Definition:
point-to-point-helper.cc:81
ns3::ObjectFactory
Instantiate subclasses of ns3::Object.
Definition:
object-factory.h:48
ns3::PointToPointHelper::m_queueFactory
ObjectFactory m_queueFactory
Queue Factory.
Definition:
point-to-point-helper.h:184
ns3::EmptyAttributeValue
A class for an empty attribute value.
Definition:
attribute.h:233
ns3::PointToPointHelper::PointToPointHelper
PointToPointHelper()
Create a PointToPointHelper to make life easier when creating point to point networks.
Definition:
point-to-point-helper.cc:45
ns3::PointToPointHelper::m_deviceFactory
ObjectFactory m_deviceFactory
Device Factory.
Definition:
point-to-point-helper.h:186
ns3::PointToPointHelper
Build a set of PointToPointNetDevice objects.
Definition:
point-to-point-helper.h:45
ns3::NodeContainer
keep track of a set of node pointers.
Definition:
node-container.h:39
ns3::PointToPointHelper::~PointToPointHelper
virtual ~PointToPointHelper()
Definition:
point-to-point-helper.h:52
ns3::PcapHelperForDevice
Base class providing common user-level pcap operations for helpers representing net devices.
Definition:
trace-helper.h:554
ns3::AsciiTraceHelperForDevice
Base class providing common user-level ascii trace operations for helpers representing net devices.
Definition:
trace-helper.h:643
src
point-to-point
helper
point-to-point-helper.h
Generated on Fri Oct 1 2021 17:03:33 for ns-3 by
1.8.20