|
Bugzilla – Full Text Bug Listing |
| Summary: | A better TypeId name for MeshHeader ? | ||
|---|---|---|---|
| Product: | ns-3 | Reporter: | Junling Bu <linlinjavaer> |
| Component: | mesh | Assignee: | ns-bugs <ns-bugs> |
| Status: | RESOLVED FIXED | ||
| Severity: | enhancement | CC: | tomh |
| Priority: | P5 | ||
| Version: | unspecified | ||
| Hardware: | PC | ||
| OS: | Linux | ||
fixed in changeset 12349:4da2f9b62a16 |
Hi, The following class ns3::dot11s::MeshHeader has a name "ns3::Dot11sMacHeader" which may be better to use "ns3::dot11s::MacHeader". And other classes in the src/mesh/dot11s have used "ns3::dot11s" except MeshHeader. 31 TypeId 32 MeshHeader::GetTypeId () 33 { 34 static TypeId tid = TypeId ("ns3::Dot11sMacHeader") 35 .SetParent<Header> () 36 .SetGroupName ("Mesh") 37 .AddConstructor<MeshHeader> (); 38 return tid; 39 } Junling