A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Installation
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
Loading...
Searching...
No Matches
packet-sink-helper.cc
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2008 INRIA
3
*
4
* SPDX-License-Identifier: GPL-2.0-only
5
*
6
* Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
7
*/
8
9
#include "
packet-sink-helper.h
"
10
11
#include <ns3/string.h>
12
13
namespace
ns3
14
{
15
16
PacketSinkHelper::PacketSinkHelper
(
const
std::string& protocol,
const
Address
& address)
17
:
ApplicationHelper
(
"ns3::PacketSink"
)
18
{
19
m_factory
.
Set
(
"Protocol"
,
StringValue
(protocol));
20
m_factory
.
Set
(
"Local"
,
AddressValue
(address));
21
}
22
23
}
// namespace ns3
ns3::Address
a polymophic address class
Definition
address.h:90
ns3::AddressValue
Definition
address.h:275
ns3::ApplicationHelper
A helper to make it easier to instantiate an application on a set of nodes.
Definition
application-helper.h:28
ns3::ApplicationHelper::m_factory
ObjectFactory m_factory
Object factory.
Definition
application-helper.h:129
ns3::ObjectFactory::Set
void Set(const std::string &name, const AttributeValue &value, Args &&... args)
Set an attribute to be set during construction.
Definition
object-factory.h:213
ns3::PacketSinkHelper::PacketSinkHelper
PacketSinkHelper(const std::string &protocol, const Address &address)
Create a PacketSinkHelper to make it easier to work with PacketSinkApplications.
Definition
packet-sink-helper.cc:16
ns3::StringValue
Hold variables of type string.
Definition
string.h:45
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
packet-sink-helper.h
src
applications
helper
packet-sink-helper.cc
Generated on Fri Nov 8 2024 13:58:59 for ns-3 by
1.11.0