Common packet header fields. More...
#include <uan-header-common.h>
Public Member Functions | |
UanHeaderCommon () | |
Default constructor. More... | |
UanHeaderCommon (const UanAddress src, const UanAddress dest, uint8_t type) | |
Create UanHeaderCommon object with given source and destination address and header type. More... | |
virtual | ~UanHeaderCommon () |
Destructor. More... | |
virtual uint32_t | Deserialize (Buffer::Iterator start) |
UanAddress | GetDest (void) const |
Get the destination address. More... | |
virtual TypeId | GetInstanceTypeId (void) const |
virtual uint32_t | GetSerializedSize (void) const |
UanAddress | GetSrc (void) const |
Get the source address. More... | |
uint8_t | GetType (void) const |
Get the header type value. More... | |
virtual void | Print (std::ostream &os) const |
virtual void | Serialize (Buffer::Iterator start) const |
void | SetDest (UanAddress dest) |
Set the destination address. More... | |
void | SetSrc (UanAddress src) |
Set the source address. More... | |
void | SetType (uint8_t type) |
Set the header type. More... | |
Public Member Functions inherited from ns3::Header | |
virtual | ~Header () |
Public Member Functions inherited from ns3::ObjectBase | |
virtual | ~ObjectBase () |
Virtual destructor. More... | |
void | GetAttribute (std::string name, AttributeValue &value) const |
bool | GetAttributeFailSafe (std::string name, AttributeValue &attribute) const |
void | SetAttribute (std::string name, const AttributeValue &value) |
bool | SetAttributeFailSafe (std::string name, const AttributeValue &value) |
bool | TraceConnect (std::string name, std::string context, const CallbackBase &cb) |
bool | TraceConnectWithoutContext (std::string name, const CallbackBase &cb) |
bool | TraceDisconnect (std::string name, std::string context, const CallbackBase &cb) |
bool | TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb) |
Static Public Member Functions | |
static TypeId | GetTypeId (void) |
Register this type. More... | |
Static Public Member Functions inherited from ns3::Header | |
static TypeId | GetTypeId (void) |
Static Public Member Functions inherited from ns3::Chunk | |
static TypeId | GetTypeId (void) |
Static Public Member Functions inherited from ns3::ObjectBase | |
static TypeId | GetTypeId (void) |
Get the type ID. More... | |
Private Attributes | |
UanAddress | m_dest |
The destination address. More... | |
UanAddress | m_src |
The source address. More... | |
uint8_t | m_type |
The type field. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from ns3::ObjectBase | |
void | ConstructSelf (const AttributeConstructionList &attributes) |
virtual void | NotifyConstructionCompleted (void) |
This method is invoked once all member attributes have been initialized. More... | |
Common packet header fields.
Doxygen introspection did not find any typical Config paths.
Includes 1 byte src address, 1 byte dest address, and a 1 byte type field.
The type field is protocol specific; see the relevant MAC protocol.
No Attributes are defined for this type.
No TraceSources are defined for this type.
Definition at line 41 of file uan-header-common.h.
ns3::UanHeaderCommon::UanHeaderCommon | ( | ) |
Default constructor.
Definition at line 29 of file uan-header-common.cc.
ns3::UanHeaderCommon::UanHeaderCommon | ( | const UanAddress | src, |
const UanAddress | dest, | ||
uint8_t | type | ||
) |
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. |
Definition at line 33 of file uan-header-common.cc.
|
virtual |
Destructor.
Definition at line 57 of file uan-header-common.cc.
|
virtual |
start | an iterator which points to where the header should written. |
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.
Implements ns3::Header.
Definition at line 112 of file uan-header-common.cc.
References ns3::Buffer::Iterator::GetDistanceFrom(), m_dest, m_src, m_type, ns3::Buffer::Iterator::ReadU8(), and visualizer.core::start().
UanAddress ns3::UanHeaderCommon::GetDest | ( | void | ) | const |
Get the destination address.
Definition at line 80 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::UanMacRcGw::SendPacket(), and ns3::UanMacRc::SendPacket().
|
virtual |
This method is typically implemented by ns3::Object::GetInstanceTypeId but some classes which derive from ns3::ObjectBase directly have to implement it themselves.
Implements ns3::ObjectBase.
Definition at line 53 of file uan-header-common.cc.
References GetTypeId().
|
virtual |
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 98 of file uan-header-common.cc.
Referenced by ns3::UanMacRcGw::ComputeExpS(), ns3::AcousticModemEnergyTestCase::DoRun(), ns3::UanMacRc::ReceiveOkFromPhy(), ns3::Reservation::Reservation(), and ns3::UanMacRcGw::UanMacRcGw().
UanAddress ns3::UanHeaderCommon::GetSrc | ( | void | ) | const |
Get the source address.
Definition at line 85 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().
uint8_t ns3::UanHeaderCommon::GetType | ( | void | ) | const |
Get the header type value.
Definition at line 90 of file uan-header-common.cc.
References m_type.
Referenced by ns3::UanPhyCalcSinrDual::CalcSinrDb(), ns3::UanMacRc::IsPhy1Ok(), ns3::UanMacRc::ReceiveOkFromPhy(), ns3::UanMacRcGw::ReceivePacket(), ns3::UanMacRcGw::SendPacket(), and ns3::UanMacRc::SendPacket().
|
static |
Register this type.
Definition at line 43 of file uan-header-common.cc.
References ns3::TypeId::SetParent().
Referenced by GetInstanceTypeId().
|
virtual |
os | output stream This method is used by Packet::Print to print the content of a trailer as ascii data to a c++ output stream. Although the trailer 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 124 of file uan-header-common.cc.
|
virtual |
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 104 of file uan-header-common.cc.
References ns3::UanAddress::GetAsInt(), m_dest, m_src, m_type, and ns3::Buffer::Iterator::WriteU8().
void ns3::UanHeaderCommon::SetDest | ( | UanAddress | dest | ) |
Set the destination address.
dest | Address of destination node. |
Definition at line 63 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().
void ns3::UanHeaderCommon::SetSrc | ( | UanAddress | src | ) |
Set the source address.
src | Address of packet source node. |
Definition at line 68 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().
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 74 of file uan-header-common.cc.
References m_type.
Referenced by ns3::UanMacRcGw::EndCycle(), ns3::UanMacAloha::Enqueue(), ns3::UanMacCw::Enqueue(), ns3::UanMacRc::ScheduleData(), and ns3::UanMacRcGw::StartCycle().
|
private |
The destination address.
Definition at line 111 of file uan-header-common.h.
Referenced by Deserialize(), GetDest(), Print(), Serialize(), and SetDest().
|
private |
The source address.
Definition at line 112 of file uan-header-common.h.
Referenced by Deserialize(), GetSrc(), Print(), Serialize(), and SetSrc().
|
private |
The type field.
Definition at line 113 of file uan-header-common.h.
Referenced by Deserialize(), GetType(), Print(), Serialize(), and SetType().