SetGroupName for applications module
This commit is contained in:
@@ -39,6 +39,7 @@ ApplicationPacketProbe::GetTypeId ()
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::ApplicationPacketProbe")
|
||||
.SetParent<Probe> ()
|
||||
.SetGroupName("Applications")
|
||||
.AddConstructor<ApplicationPacketProbe> ()
|
||||
.AddTraceSource ( "Output",
|
||||
"The packet plus its socket address that serve "
|
||||
|
||||
@@ -42,6 +42,7 @@ BulkSendApplication::GetTypeId (void)
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::BulkSendApplication")
|
||||
.SetParent<Application> ()
|
||||
.SetGroupName("Applications")
|
||||
.AddConstructor<BulkSendApplication> ()
|
||||
.AddAttribute ("SendSize", "The amount of data to send each time.",
|
||||
UintegerValue (512),
|
||||
|
||||
@@ -53,6 +53,7 @@ OnOffApplication::GetTypeId (void)
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::OnOffApplication")
|
||||
.SetParent<Application> ()
|
||||
.SetGroupName("Applications")
|
||||
.AddConstructor<OnOffApplication> ()
|
||||
.AddAttribute ("DataRate", "The data rate in on state.",
|
||||
DataRateValue (DataRate ("500kb/s")),
|
||||
|
||||
@@ -43,6 +43,7 @@ PacketSink::GetTypeId (void)
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::PacketSink")
|
||||
.SetParent<Application> ()
|
||||
.SetGroupName("Applications")
|
||||
.AddConstructor<PacketSink> ()
|
||||
.AddAttribute ("Local",
|
||||
"The Address on which to Bind the rx socket.",
|
||||
|
||||
@@ -46,6 +46,7 @@ TypeId Ping6::GetTypeId ()
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::Ping6")
|
||||
.SetParent<Application>()
|
||||
.SetGroupName("Applications")
|
||||
.AddConstructor<Ping6>()
|
||||
.AddAttribute ("MaxPackets",
|
||||
"The maximum number of packets the application will send",
|
||||
|
||||
@@ -52,6 +52,7 @@ TypeId Radvd::GetTypeId ()
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::Radvd")
|
||||
.SetParent<Application> ()
|
||||
.SetGroupName("Applications")
|
||||
.AddConstructor<Radvd> ()
|
||||
.AddAttribute ("AdvertisementJitter",
|
||||
"Uniform variable to provide jitter between min and max values of AdvInterval",
|
||||
|
||||
@@ -62,6 +62,7 @@ SeqTsHeader::GetTypeId (void)
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::SeqTsHeader")
|
||||
.SetParent<Header> ()
|
||||
.SetGroupName("Applications")
|
||||
.AddConstructor<SeqTsHeader> ()
|
||||
;
|
||||
return tid;
|
||||
|
||||
@@ -44,6 +44,7 @@ UdpClient::GetTypeId (void)
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::UdpClient")
|
||||
.SetParent<Application> ()
|
||||
.SetGroupName("Applications")
|
||||
.AddConstructor<UdpClient> ()
|
||||
.AddAttribute ("MaxPackets",
|
||||
"The maximum number of packets the application will send",
|
||||
|
||||
@@ -40,6 +40,7 @@ UdpEchoClient::GetTypeId (void)
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::UdpEchoClient")
|
||||
.SetParent<Application> ()
|
||||
.SetGroupName("Applications")
|
||||
.AddConstructor<UdpEchoClient> ()
|
||||
.AddAttribute ("MaxPackets",
|
||||
"The maximum number of packets the application will send",
|
||||
|
||||
@@ -43,6 +43,7 @@ UdpEchoServer::GetTypeId (void)
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::UdpEchoServer")
|
||||
.SetParent<Application> ()
|
||||
.SetGroupName("Applications")
|
||||
.AddConstructor<UdpEchoServer> ()
|
||||
.AddAttribute ("Port", "Port on which we listen for incoming packets.",
|
||||
UintegerValue (9),
|
||||
|
||||
@@ -46,6 +46,7 @@ UdpServer::GetTypeId (void)
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::UdpServer")
|
||||
.SetParent<Application> ()
|
||||
.SetGroupName("Applications")
|
||||
.AddConstructor<UdpServer> ()
|
||||
.AddAttribute ("Port",
|
||||
"Port on which we listen for incoming packets.",
|
||||
|
||||
@@ -62,6 +62,7 @@ UdpTraceClient::GetTypeId (void)
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::UdpTraceClient")
|
||||
.SetParent<Application> ()
|
||||
.SetGroupName("Applications")
|
||||
.AddConstructor<UdpTraceClient> ()
|
||||
.AddAttribute ("RemoteAddress",
|
||||
"The destination Address of the outbound packets",
|
||||
|
||||
@@ -37,6 +37,7 @@ V4Ping::GetTypeId (void)
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::V4Ping")
|
||||
.SetParent<Application> ()
|
||||
.SetGroupName("Applications")
|
||||
.AddConstructor<V4Ping> ()
|
||||
.AddAttribute ("Remote",
|
||||
"The address of the machine we want to ping.",
|
||||
|
||||
Reference in New Issue
Block a user