Mesh Control field, see Section 8.2.4.7.3 IEEE 802.11-2012. More...
#include "dot11s-mac-header.h"
 Inheritance diagram for ns3::dot11s::MeshHeader:
 Inheritance diagram for ns3::dot11s::MeshHeader: Collaboration diagram for ns3::dot11s::MeshHeader:
 Collaboration diagram for ns3::dot11s::MeshHeader:| Public Member Functions | |
| MeshHeader () | |
| ~MeshHeader () override | |
| uint32_t | Deserialize (Buffer::Iterator start) override | 
| Mac48Address | GetAddr4 () const | 
| Get extended address 4. | |
| Mac48Address | GetAddr5 () const | 
| Get extended address 5. | |
| Mac48Address | GetAddr6 () const | 
| Get extended address 6. | |
| uint8_t | GetAddressExt () const | 
| Get Address Extension Mode. | |
| TypeId | GetInstanceTypeId () const override | 
| Get the most derived TypeId for this Object. | |
| uint32_t | GetMeshSeqno () const | 
| Get the four-byte mesh sequence number. | |
| uint8_t | GetMeshTtl () const | 
| Get mesh TTL function subfield value. | |
| uint32_t | GetSerializedSize () const override | 
| void | Print (std::ostream &os) const override | 
| void | Serialize (Buffer::Iterator start) const override | 
| void | SetAddr4 (Mac48Address address) | 
| Set extended address 4. | |
| void | SetAddr5 (Mac48Address address) | 
| Set extended address 5. | |
| void | SetAddr6 (Mac48Address address) | 
| Set extended address 6. | |
| void | SetAddressExt (uint8_t num_of_addresses) | 
| Set Address Extension Mode. | |
| void | SetMeshSeqno (uint32_t seqno) | 
| Set four-byte mesh sequence number. | |
| void | SetMeshTtl (uint8_t TTL) | 
| Set mesh TTL subfield corresponding to the remaining number of hops the MSDU/MMPDU is forwarded. | |
|  Public Member Functions inherited from ns3::Header | |
| ~Header () override | |
| virtual uint32_t | Deserialize (Buffer::Iterator start, Buffer::Iterator end) | 
| Deserialize the object from a buffer iterator. | |
|  Public Member Functions inherited from ns3::ObjectBase | |
| virtual | ~ObjectBase () | 
| Virtual destructor. | |
| void | GetAttribute (std::string name, AttributeValue &value, bool permissive=false) const | 
| Get the value of an attribute, raising fatal errors if unsuccessful. | |
| bool | GetAttributeFailSafe (std::string name, AttributeValue &value) const | 
| Get the value of an attribute without raising errors. | |
| void | SetAttribute (std::string name, const AttributeValue &value) | 
| Set a single attribute, raising fatal errors if unsuccessful. | |
| bool | SetAttributeFailSafe (std::string name, const AttributeValue &value) | 
| Set a single attribute without raising errors. | |
| bool | TraceConnect (std::string name, std::string context, const CallbackBase &cb) | 
| Connect a TraceSource to a Callback with a context. | |
| bool | TraceConnectWithoutContext (std::string name, const CallbackBase &cb) | 
| Connect a TraceSource to a Callback without a context. | |
| bool | TraceDisconnect (std::string name, std::string context, const CallbackBase &cb) | 
| Disconnect from a TraceSource a Callback previously connected with a context. | |
| bool | TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb) | 
| Disconnect from a TraceSource a Callback previously connected without a context. | |
| Static Public Member Functions | |
| static TypeId | GetTypeId () | 
| Get the type ID. | |
|  Static Public Member Functions inherited from ns3::Header | |
| static TypeId | GetTypeId () | 
| Get the type ID. | |
|  Static Public Member Functions inherited from ns3::Chunk | |
| static TypeId | GetTypeId () | 
| Get the type ID. | |
|  Static Public Member Functions inherited from ns3::ObjectBase | |
| static TypeId | GetTypeId () | 
| Get the type ID. | |
| Private Attributes | |
| Mac48Address | m_addr4 | 
| MAC address 4. | |
| Mac48Address | m_addr5 | 
| MAC address 5. | |
| Mac48Address | m_addr6 | 
| MAC address 6. | |
| uint8_t | m_meshFlags | 
| mesh flags | |
| uint32_t | m_meshSeqno | 
| mesh sequence no | |
| uint8_t | m_meshTtl | 
| mesh TTL | |
| Friends | |
| bool | operator== (const MeshHeader &a, const MeshHeader &b) | 
| equality operator | |
| Additional Inherited Members | |
|  Protected Member Functions inherited from ns3::ObjectBase | |
| void | ConstructSelf (const AttributeConstructionList &attributes) | 
| Complete construction of ObjectBase; invoked by derived classes. | |
| virtual void | NotifyConstructionCompleted () | 
| Notifier called once the ObjectBase is fully constructed. | |
|  Related Symbols inherited from ns3::ObjectBase | |
| static TypeId | GetObjectIid () | 
| Ensure the TypeId for ObjectBase gets fully configured to anchor the inheritance tree properly. | |
Mesh Control field, see Section 8.2.4.7.3 IEEE 802.11-2012.
Header format: | Mesh flags: 1 | TTL: 1 | Sequence number: 4 | Address ext.: 0, 6, or 12 |
Definition at line 26 of file dot11s-mac-header.h.
| ns3::dot11s::MeshHeader::MeshHeader | ( | ) | 
Definition at line 32 of file dot11s-mac-header.cc.
| 
 | override | 
Definition at line 42 of file dot11s-mac-header.cc.
| 
 | overridevirtual | 
| start | an iterator which points to where the header should read from. | 
This method is used by Packet::RemoveHeader to re-create a header from the byte buffer of a packet. The data read is expected to match bit-for-bit the representation of this header in real networks.
Note that data is not actually removed from the buffer to which the iterator points. Both Packet::RemoveHeader() and Packet::PeekHeader() call Deserialize(), but only the RemoveHeader() has additional statements to remove the header bytes from the underlying buffer and associated metadata.
Implements ns3::Header.
Definition at line 155 of file dot11s-mac-header.cc.
References ns3::Buffer::Iterator::GetDistanceFrom(), m_addr4, m_addr5, m_addr6, m_meshFlags, m_meshSeqno, m_meshTtl, ns3::ReadFrom(), ns3::Buffer::Iterator::ReadLsbtohU32(), and ns3::Buffer::Iterator::ReadU8().
 Here is the call graph for this function:
 Here is the call graph for this function:| Mac48Address ns3::dot11s::MeshHeader::GetAddr4 | ( | ) | const | 
Get extended address 4.
Definition at line 71 of file dot11s-mac-header.cc.
References m_addr4.
| Mac48Address ns3::dot11s::MeshHeader::GetAddr5 | ( | ) | const | 
Get extended address 5.
Definition at line 77 of file dot11s-mac-header.cc.
References m_addr5.
| Mac48Address ns3::dot11s::MeshHeader::GetAddr6 | ( | ) | const | 
Get extended address 6.
Definition at line 83 of file dot11s-mac-header.cc.
References m_addr6.
| uint8_t ns3::dot11s::MeshHeader::GetAddressExt | ( | ) | const | 
Get Address Extension Mode.
Definition at line 120 of file dot11s-mac-header.cc.
References m_meshFlags.
Referenced by GetSerializedSize(), ns3::dot11s::HwmpProtocolMac::ReceiveData(), and Serialize().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| 
 | overridevirtual | 
Get the most derived TypeId for this Object.
This method is provided by ns3::Object::GetInstanceTypeId but classes which derive from ns3::ObjectBase directly have to implement it themselves. Typically, this method should simply return the output of GetTypeId().
Implements ns3::ObjectBase.
Definition at line 47 of file dot11s-mac-header.cc.
References GetTypeId().
 Here is the call graph for this function:
 Here is the call graph for this function:| uint32_t ns3::dot11s::MeshHeader::GetMeshSeqno | ( | ) | const | 
Get the four-byte mesh sequence number.
Definition at line 95 of file dot11s-mac-header.cc.
References m_meshSeqno.
Referenced by ns3::dot11s::HwmpProtocolMac::ReceiveData().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| uint8_t ns3::dot11s::MeshHeader::GetMeshTtl | ( | ) | const | 
Get mesh TTL function subfield value.
Definition at line 107 of file dot11s-mac-header.cc.
References m_meshTtl.
Referenced by ns3::dot11s::HwmpProtocolMac::ReceiveData().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| 
 | overridevirtual | 
This method is used by Packet::AddHeader to store a header into the byte buffer of a packet. This method should return the number of bytes which are needed to store the full header data by Serialize.
Implements ns3::Header.
Definition at line 126 of file dot11s-mac-header.cc.
References GetAddressExt().
 Here is the call graph for this function:
 Here is the call graph for this function:| 
 | static | 
Get the type ID.
Definition at line 23 of file dot11s-mac-header.cc.
References ns3::TypeId::SetParent().
Referenced by GetInstanceTypeId().
 Here is the call graph for this function:
 Here is the call graph for this function: Here is the caller graph for this function:
 Here is the caller graph for this function:| 
 | overridevirtual | 
| os | output stream This method is used by Packet::Print to print the content of a header as ascii data to a c++ output stream. Although the header is free to format its output as it wishes, it is recommended to follow a few rules to integrate with the packet pretty printer: start with flags, small field values located between a pair of parens. Values should be separated by whitespace. Follow the parens with the important fields, separated by whitespace. i.e.: (field1 val1 field2 val2 field3 val3) field4 val4 field5 val5 | 
Implements ns3::Header.
Definition at line 179 of file dot11s-mac-header.cc.
References m_addr4, m_addr5, m_addr6, m_meshFlags, m_meshSeqno, and m_meshTtl.
| 
 | overridevirtual | 
| start | an iterator which points to where the header should be written. | 
This method is used by Packet::AddHeader to store a header into the byte buffer of a packet. The data written is expected to match bit-for-bit the representation of this header in a real network.
Implements ns3::Header.
Definition at line 132 of file dot11s-mac-header.cc.
References GetAddressExt(), m_addr4, m_addr5, m_addr6, m_meshFlags, m_meshSeqno, m_meshTtl, ns3::Buffer::Iterator::WriteHtolsbU32(), ns3::WriteTo(), and ns3::Buffer::Iterator::WriteU8().
 Here is the call graph for this function:
 Here is the call graph for this function:| void ns3::dot11s::MeshHeader::SetAddr4 | ( | Mac48Address | address | ) | 
Set extended address 4.
| address | the MAC address to set | 
Definition at line 53 of file dot11s-mac-header.cc.
References m_addr4.
Referenced by MeshHeaderTest::DoRun().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| void ns3::dot11s::MeshHeader::SetAddr5 | ( | Mac48Address | address | ) | 
Set extended address 5.
| address | the MAC address | 
Definition at line 59 of file dot11s-mac-header.cc.
References m_addr5.
Referenced by MeshHeaderTest::DoRun().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| void ns3::dot11s::MeshHeader::SetAddr6 | ( | Mac48Address | address | ) | 
Set extended address 6.
| address | the MAC address | 
Definition at line 65 of file dot11s-mac-header.cc.
References m_addr6.
Referenced by MeshHeaderTest::DoRun().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| void ns3::dot11s::MeshHeader::SetAddressExt | ( | uint8_t | num_of_addresses | ) | 
Set Address Extension Mode.
| num_of_addresses | value between 0 and 3 for the two-bit field | 
Definition at line 113 of file dot11s-mac-header.cc.
References m_meshFlags, and NS_ASSERT.
Referenced by MeshHeaderTest::DoRun().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| void ns3::dot11s::MeshHeader::SetMeshSeqno | ( | uint32_t | seqno | ) | 
Set four-byte mesh sequence number.
| seqno | the sequence number to set | 
Definition at line 89 of file dot11s-mac-header.cc.
References m_meshSeqno.
Referenced by MeshHeaderTest::DoRun(), and ns3::dot11s::HwmpProtocolMac::UpdateOutcomingFrame().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| void ns3::dot11s::MeshHeader::SetMeshTtl | ( | uint8_t | TTL | ) | 
Set mesh TTL subfield corresponding to the remaining number of hops the MSDU/MMPDU is forwarded.
| TTL | the TTL value to set | 
Definition at line 101 of file dot11s-mac-header.cc.
References m_meshTtl.
Referenced by MeshHeaderTest::DoRun(), and ns3::dot11s::HwmpProtocolMac::UpdateOutcomingFrame().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| 
 | friend | 
equality operator
| a | left hand side | 
| b | right hand side | 
Definition at line 187 of file dot11s-mac-header.cc.
| 
 | private | 
MAC address 4.
Definition at line 113 of file dot11s-mac-header.h.
Referenced by Deserialize(), GetAddr4(), Print(), Serialize(), and SetAddr4().
| 
 | private | 
MAC address 5.
Definition at line 114 of file dot11s-mac-header.h.
Referenced by Deserialize(), GetAddr5(), Print(), Serialize(), and SetAddr5().
| 
 | private | 
MAC address 6.
Definition at line 115 of file dot11s-mac-header.h.
Referenced by Deserialize(), GetAddr6(), Print(), Serialize(), and SetAddr6().
| 
 | private | 
mesh flags
Definition at line 110 of file dot11s-mac-header.h.
Referenced by Deserialize(), GetAddressExt(), Print(), Serialize(), and SetAddressExt().
| 
 | private | 
mesh sequence no
Definition at line 112 of file dot11s-mac-header.h.
Referenced by Deserialize(), GetMeshSeqno(), Print(), Serialize(), and SetMeshSeqno().
| 
 | private | 
mesh TTL
Definition at line 111 of file dot11s-mac-header.h.
Referenced by Deserialize(), GetMeshTtl(), Print(), Serialize(), and SetMeshTtl().