SetGroupName for dsr module
This commit is contained in:
@@ -47,6 +47,7 @@ TypeId DsrFsHeader::GetTypeId ()
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrFsHeader")
|
||||
.AddConstructor<DsrFsHeader> ()
|
||||
.SetParent<Header> ()
|
||||
.SetGroupName ("Dsr")
|
||||
;
|
||||
return tid;
|
||||
}
|
||||
|
||||
@@ -45,6 +45,7 @@ TypeId GraReply::GetTypeId ()
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::dsr::GraReply")
|
||||
.SetParent<Object> ()
|
||||
.SetGroupName ("Dsr")
|
||||
.AddConstructor<GraReply> ()
|
||||
;
|
||||
return tid;
|
||||
|
||||
@@ -51,6 +51,7 @@ DsrNetworkQueue::GetTypeId (void)
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrNetworkQueue")
|
||||
.SetParent<Object> ()
|
||||
.SetGroupName ("Dsr")
|
||||
.AddConstructor<DsrNetworkQueue> ()
|
||||
;
|
||||
return tid;
|
||||
|
||||
@@ -51,6 +51,7 @@ TypeId DsrOptionHeader::GetTypeId ()
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrOptionHeader")
|
||||
.AddConstructor<DsrOptionHeader> ()
|
||||
.SetParent<Header> ()
|
||||
.SetGroupName ("Dsr")
|
||||
;
|
||||
return tid;
|
||||
}
|
||||
@@ -139,6 +140,7 @@ TypeId DsrOptionPad1Header::GetTypeId ()
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrOptionPad1Header")
|
||||
.AddConstructor<DsrOptionPad1Header> ()
|
||||
.SetParent<DsrOptionHeader> ()
|
||||
.SetGroupName ("Dsr")
|
||||
;
|
||||
return tid;
|
||||
}
|
||||
@@ -190,6 +192,7 @@ TypeId DsrOptionPadnHeader::GetTypeId ()
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrOptionPadnHeader")
|
||||
.AddConstructor<DsrOptionPadnHeader> ()
|
||||
.SetParent<DsrOptionHeader> ()
|
||||
.SetGroupName ("Dsr")
|
||||
;
|
||||
return tid;
|
||||
}
|
||||
@@ -250,6 +253,7 @@ TypeId DsrOptionRreqHeader::GetTypeId ()
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrOptionRreqHeader")
|
||||
.AddConstructor<DsrOptionRreqHeader> ()
|
||||
.SetParent<DsrOptionHeader> ()
|
||||
.SetGroupName ("Dsr")
|
||||
;
|
||||
return tid;
|
||||
}
|
||||
@@ -397,6 +401,7 @@ TypeId DsrOptionRrepHeader::GetTypeId ()
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrOptionRrepHeader")
|
||||
.AddConstructor<DsrOptionRrepHeader> ()
|
||||
.SetParent<DsrOptionHeader> ()
|
||||
.SetGroupName ("Dsr")
|
||||
;
|
||||
return tid;
|
||||
}
|
||||
@@ -518,6 +523,7 @@ TypeId DsrOptionSRHeader::GetTypeId ()
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrOptionSRHeader")
|
||||
.AddConstructor<DsrOptionSRHeader> ()
|
||||
.SetParent<DsrOptionHeader> ()
|
||||
.SetGroupName ("Dsr")
|
||||
;
|
||||
return tid;
|
||||
}
|
||||
@@ -660,6 +666,7 @@ TypeId DsrOptionRerrHeader::GetTypeId ()
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrOptionRerrHeader")
|
||||
.AddConstructor<DsrOptionRerrHeader> ()
|
||||
.SetParent<DsrOptionHeader> ()
|
||||
.SetGroupName ("Dsr")
|
||||
;
|
||||
return tid;
|
||||
}
|
||||
@@ -782,6 +789,7 @@ TypeId DsrOptionRerrUnreachHeader::GetTypeId ()
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrOptionRerrUnreachHeader")
|
||||
.AddConstructor<DsrOptionRerrUnreachHeader> ()
|
||||
.SetParent<DsrOptionRerrHeader> ()
|
||||
.SetGroupName ("Dsr")
|
||||
;
|
||||
return tid;
|
||||
}
|
||||
@@ -910,6 +918,7 @@ TypeId DsrOptionRerrUnsupportHeader::GetTypeId ()
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrOptionRerrUnsupportHeader")
|
||||
.AddConstructor<DsrOptionRerrUnsupportHeader> ()
|
||||
.SetParent<DsrOptionRerrHeader> ()
|
||||
.SetGroupName ("Dsr")
|
||||
;
|
||||
return tid;
|
||||
}
|
||||
@@ -1028,6 +1037,7 @@ TypeId DsrOptionAckReqHeader::GetTypeId ()
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrOptionAckReqHeader")
|
||||
.AddConstructor<DsrOptionAckReqHeader> ()
|
||||
.SetParent<DsrOptionHeader> ()
|
||||
.SetGroupName ("Dsr")
|
||||
;
|
||||
return tid;
|
||||
}
|
||||
@@ -1103,6 +1113,7 @@ TypeId DsrOptionAckHeader::GetTypeId ()
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrOptionAckHeader")
|
||||
.AddConstructor<DsrOptionAckHeader> ()
|
||||
.SetParent<DsrOptionHeader> ()
|
||||
.SetGroupName ("Dsr")
|
||||
;
|
||||
return tid;
|
||||
}
|
||||
|
||||
@@ -72,6 +72,7 @@ TypeId DsrOptions::GetTypeId ()
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrOptions")
|
||||
.SetParent<Object> ()
|
||||
.SetGroupName ("Dsr")
|
||||
.AddAttribute ("OptionNumber", "The Dsr option number.",
|
||||
UintegerValue (0),
|
||||
MakeUintegerAccessor (&DsrOptions::GetOptionNumber),
|
||||
@@ -384,6 +385,7 @@ TypeId DsrOptionPad1::GetTypeId ()
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrOptionPad1")
|
||||
.SetParent<DsrOptions> ()
|
||||
.SetGroupName ("Dsr")
|
||||
.AddConstructor<DsrOptionPad1> ()
|
||||
;
|
||||
return tid;
|
||||
@@ -424,6 +426,7 @@ TypeId DsrOptionPadn::GetTypeId ()
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrOptionPadn")
|
||||
.SetParent<DsrOptions> ()
|
||||
.SetGroupName ("Dsr")
|
||||
.AddConstructor<DsrOptionPadn> ()
|
||||
;
|
||||
return tid;
|
||||
@@ -464,6 +467,7 @@ TypeId DsrOptionRreq::GetTypeId ()
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrOptionRreq")
|
||||
.SetParent<DsrOptions> ()
|
||||
.SetGroupName ("Dsr")
|
||||
.AddConstructor<DsrOptionRreq> ()
|
||||
;
|
||||
return tid;
|
||||
@@ -963,6 +967,7 @@ TypeId DsrOptionRrep::GetTypeId ()
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrOptionRrep")
|
||||
.SetParent<DsrOptions> ()
|
||||
.SetGroupName ("Dsr")
|
||||
.AddConstructor<DsrOptionRrep> ()
|
||||
;
|
||||
return tid;
|
||||
@@ -1163,6 +1168,7 @@ TypeId DsrOptionSR::GetTypeId ()
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrOptionSR")
|
||||
.SetParent<DsrOptions> ()
|
||||
.SetGroupName ("Dsr")
|
||||
.AddConstructor<DsrOptionSR> ()
|
||||
;
|
||||
return tid;
|
||||
@@ -1404,6 +1410,7 @@ TypeId DsrOptionRerr::GetTypeId ()
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrOptionRerr")
|
||||
.SetParent<DsrOptions> ()
|
||||
.SetGroupName ("Dsr")
|
||||
.AddConstructor<DsrOptionRerr> ()
|
||||
;
|
||||
return tid;
|
||||
@@ -1583,6 +1590,7 @@ TypeId DsrOptionAckReq::GetTypeId ()
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrOptionAckReq")
|
||||
.SetParent<DsrOptions> ()
|
||||
.SetGroupName ("Dsr")
|
||||
.AddConstructor<DsrOptionAckReq> ()
|
||||
;
|
||||
return tid;
|
||||
@@ -1638,6 +1646,7 @@ TypeId DsrOptionAck::GetTypeId ()
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrOptionAck")
|
||||
.SetParent<DsrOptions> ()
|
||||
.SetGroupName ("Dsr")
|
||||
.AddConstructor<DsrOptionAck> ()
|
||||
;
|
||||
return tid;
|
||||
|
||||
@@ -48,6 +48,7 @@ TypeId PassiveBuffer::GetTypeId ()
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::dsr::PassiveBuffer")
|
||||
.SetParent<Object> ()
|
||||
.SetGroupName ("Dsr")
|
||||
.AddConstructor<PassiveBuffer> ()
|
||||
;
|
||||
return tid;
|
||||
|
||||
@@ -138,6 +138,7 @@ TypeId RouteCache::GetTypeId ()
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::dsr::RouteCache")
|
||||
.SetParent<Object> ()
|
||||
.SetGroupName ("Dsr")
|
||||
.AddConstructor<RouteCache> ()
|
||||
;
|
||||
return tid;
|
||||
|
||||
@@ -108,6 +108,7 @@ TypeId DsrRouting::GetTypeId ()
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::dsr::DsrRouting")
|
||||
.SetParent<IpL4Protocol> ()
|
||||
.SetGroupName ("Dsr")
|
||||
.AddConstructor<DsrRouting> ()
|
||||
.AddAttribute ("RouteCache",
|
||||
"The route cache for saving routes from "
|
||||
|
||||
@@ -46,6 +46,7 @@ TypeId RreqTable::GetTypeId ()
|
||||
{
|
||||
static TypeId tid = TypeId ("ns3::dsr::RreqTable")
|
||||
.SetParent<Object> ()
|
||||
.SetGroupName ("Dsr")
|
||||
.AddConstructor<RreqTable> ()
|
||||
;
|
||||
return tid;
|
||||
|
||||
Reference in New Issue
Block a user