Common packet header fields. More...
#include "uan-header-common.h"
 Inheritance diagram for ns3::UanHeaderCommon:
 Inheritance diagram for ns3::UanHeaderCommon: Collaboration diagram for ns3::UanHeaderCommon:
 Collaboration diagram for ns3::UanHeaderCommon:| Public Member Functions | |
| UanHeaderCommon () | |
| Default constructor. | |
| UanHeaderCommon (const Mac8Address src, const Mac8Address dest, uint8_t type, uint8_t protocolNumber) | |
| Create UanHeaderCommon object with given source and destination address and header type. | |
| ~UanHeaderCommon () override | |
| Destructor. | |
| uint32_t | Deserialize (Buffer::Iterator start) override | 
| Mac8Address | GetDest () const | 
| Get the destination address. | |
| TypeId | GetInstanceTypeId () const override | 
| Get the most derived TypeId for this Object. | |
| uint16_t | GetProtocolNumber () const | 
| Get the packet type value. | |
| uint32_t | GetSerializedSize () const override | 
| Mac8Address | GetSrc () const | 
| Get the source address. | |
| uint8_t | GetType () const | 
| Get the header type value. | |
| void | Print (std::ostream &os) const override | 
| void | Serialize (Buffer::Iterator start) const override | 
| void | SetDest (Mac8Address dest) | 
| Set the destination address. | |
| void | SetProtocolNumber (uint16_t protocolNumber) | 
| Set the packet type. | |
| void | SetSrc (Mac8Address src) | 
| Set the source address. | |
| void | SetType (uint8_t type) | 
| Set the header type. | |
|  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 () | 
| Register this type. | |
|  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 | |
| Mac8Address | m_dest | 
| The destination address. | |
| Mac8Address | m_src | 
| The source address. | |
| UanProtocolBits | m_uanProtocolBits {0} | 
| The type and protocol bits. | |
| 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. | |
Common packet header fields.
Introspection did not find any typical Config paths.
1 2 3 4 5 6 7 8 1 2 3 4 5 6 7 8 1 2 3 4 5 6 7 8 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | src addr | dst addr | prtcl | type | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
src addr: The MAC8 source address
dst addr: The MAC8 destination address
prtcl: The layer 3 protocol prtcl=1 (IPv4) prtcl=2 (ARP) prtcl=3 (IPv6) prtcl=4 (6LoWPAN)
type: The type field is MAC protocol specific
 No Attributes are defined for this type.
 No TraceSources are defined for this type.
 Group: Uan
Size of this type is 48 bytes (on a 64-bit architecture).
Definition at line 54 of file uan-header-common.h.
| ns3::UanHeaderCommon::UanHeaderCommon | ( | ) | 
Default constructor.
Definition at line 23 of file uan-header-common.cc.
| ns3::UanHeaderCommon::UanHeaderCommon | ( | const Mac8Address | src, | 
| const Mac8Address | dest, | ||
| uint8_t | type, | ||
| uint8_t | protocolNumber ) | 
Create UanHeaderCommon object with given source and destination address and header type.
| src | Source address defined in header. | 
| dest | Destination address defined in header. | 
| type | Header type. | 
| protocolNumber | the layer 3 protocol number | 
Definition at line 27 of file uan-header-common.cc.
References ns3::UanProtocolBits::m_type, m_uanProtocolBits, and SetProtocolNumber().
 Here is the call graph for this function:
 Here is the call graph for this function:| 
 | override | 
Destructor.
Definition at line 55 of file uan-header-common.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 169 of file uan-header-common.cc.
References ns3::Buffer::Iterator::GetDistanceFrom(), m_dest, ns3::UanProtocolBits::m_protocolNumber, m_src, ns3::UanProtocolBits::m_type, m_uanProtocolBits, and ns3::Buffer::Iterator::ReadU8().
 Here is the call graph for this function:
 Here is the call graph for this function:| Mac8Address ns3::UanHeaderCommon::GetDest | ( | ) | const | 
Get the destination address.
Definition at line 107 of file uan-header-common.cc.
References m_dest.
Referenced by ns3::UanMacRc::IsPhy1Ok(), ns3::UanMacCw::PhyRxPacketGood(), ns3::UanMacRc::ReceiveOkFromPhy(), ns3::UanMacRcGw::ReceivePacket(), ns3::UanMacAloha::RxPacketGood(), ns3::UanMacRc::SendPacket(), and ns3::UanMacRcGw::SendPacket().
 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 50 of file uan-header-common.cc.
References GetTypeId().
 Here is the call graph for this function:
 Here is the call graph for this function:| uint16_t ns3::UanHeaderCommon::GetProtocolNumber | ( | ) | const | 
Get the packet type value.
Definition at line 125 of file uan-header-common.cc.
References ARP_PROT_NUMBER, IPV4_PROT_NUMBER, IPV6_PROT_NUMBER, ns3::UanProtocolBits::m_protocolNumber, m_uanProtocolBits, and SIXLOWPAN_PROT_NUMBER.
Referenced by ns3::UanMacCw::PhyRxPacketGood(), ns3::UanMacRc::ReceiveOkFromPhy(), ns3::UanMacRcGw::ReceivePacket(), and ns3::UanMacAloha::RxPacketGood().
 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 149 of file uan-header-common.cc.
Referenced by ns3::Reservation::Reservation(), ns3::UanMacRc::UanMacRc(), ns3::UanMacRcGw::UanMacRcGw(), ns3::UanMacRcGw::ComputeExpS(), AcousticModemEnergyTestCase::DoRun(), and ns3::UanMacRc::ReceiveOkFromPhy().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| Mac8Address ns3::UanHeaderCommon::GetSrc | ( | ) | const | 
Get the source address.
Definition at line 113 of file uan-header-common.cc.
References m_src.
Referenced by ns3::UanPhyCalcSinrDual::CalcSinrDb(), ns3::UanMacCw::PhyRxPacketGood(), ns3::UanMacRc::ReceiveOkFromPhy(), ns3::UanMacRcGw::ReceivePacket(), and ns3::UanMacAloha::RxPacketGood().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| uint8_t ns3::UanHeaderCommon::GetType | ( | ) | const | 
Get the header type value.
Definition at line 119 of file uan-header-common.cc.
References ns3::UanProtocolBits::m_type, and m_uanProtocolBits.
Referenced by ns3::UanPhyCalcSinrDual::CalcSinrDb(), ns3::UanMacRc::IsPhy1Ok(), ns3::UanMacRc::ReceiveOkFromPhy(), ns3::UanMacRcGw::ReceivePacket(), ns3::UanMacRc::SendPacket(), and ns3::UanMacRcGw::SendPacket().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| 
 | static | 
Register this type.
Definition at line 40 of file uan-header-common.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 183 of file uan-header-common.cc.
References m_dest, ns3::UanProtocolBits::m_protocolNumber, m_src, ns3::UanProtocolBits::m_type, and m_uanProtocolBits.
| 
 | 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 155 of file uan-header-common.cc.
References ns3::Mac8Address::CopyTo(), m_dest, ns3::UanProtocolBits::m_protocolNumber, m_src, ns3::UanProtocolBits::m_type, and m_uanProtocolBits.
 Here is the call graph for this function:
 Here is the call graph for this function:| void ns3::UanHeaderCommon::SetDest | ( | Mac8Address | dest | ) | 
Set the destination address.
| dest | Address of destination node. | 
Definition at line 60 of file uan-header-common.cc.
References m_dest.
Referenced by ns3::UanMacRcGw::EndCycle(), ns3::UanMacAloha::Enqueue(), ns3::UanMacCw::Enqueue(), ns3::UanMacRc::ScheduleData(), and ns3::UanMacRcGw::StartCycle().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| void ns3::UanHeaderCommon::SetProtocolNumber | ( | uint16_t | protocolNumber | ) | 
Set the packet type.
Used to indicate the layer 3 protocol
| protocolNumber | The layer 3 protocol number value. | 
Definition at line 78 of file uan-header-common.cc.
References ARP_PROT_NUMBER, IPV4_PROT_NUMBER, IPV6_PROT_NUMBER, ns3::UanProtocolBits::m_protocolNumber, m_uanProtocolBits, NS_ASSERT_MSG, and SIXLOWPAN_PROT_NUMBER.
Referenced by UanHeaderCommon(), ns3::UanMacAloha::Enqueue(), ns3::UanMacCw::Enqueue(), and ns3::UanMacRcGw::StartCycle().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| void ns3::UanHeaderCommon::SetSrc | ( | Mac8Address | src | ) | 
Set the source address.
| src | Address of packet source node. | 
Definition at line 66 of file uan-header-common.cc.
References m_src.
Referenced by ns3::UanMacRcGw::EndCycle(), ns3::UanMacAloha::Enqueue(), ns3::UanMacCw::Enqueue(), ns3::UanMacRc::ScheduleData(), and ns3::UanMacRcGw::StartCycle().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| void ns3::UanHeaderCommon::SetType | ( | uint8_t | type | ) | 
Set the header type.
Use of this value is protocol specific.
| type | The type value. | 
Definition at line 72 of file uan-header-common.cc.
References ns3::UanProtocolBits::m_type, and m_uanProtocolBits.
Referenced by ns3::UanMacRcGw::EndCycle(), ns3::UanMacAloha::Enqueue(), ns3::UanMacCw::Enqueue(), ns3::UanMacRc::ScheduleData(), and ns3::UanMacRcGw::StartCycle().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| 
 | private | 
The destination address.
Definition at line 141 of file uan-header-common.h.
Referenced by Deserialize(), GetDest(), Print(), Serialize(), and SetDest().
| 
 | private | 
The source address.
Definition at line 142 of file uan-header-common.h.
Referenced by Deserialize(), GetSrc(), Print(), Serialize(), and SetSrc().
| 
 | private | 
The type and protocol bits.
Definition at line 143 of file uan-header-common.h.
Referenced by UanHeaderCommon(), Deserialize(), GetProtocolNumber(), GetType(), Print(), Serialize(), SetProtocolNumber(), and SetType().