This class implements a tag that carries socket ancillary data to the socket interface. More...
#include <ipv6-packet-info-tag.h>
Public Member Functions | |
Ipv6PacketInfoTag () | |
virtual void | Deserialize (TagBuffer i) |
Ipv6Address | GetAddress (void) const |
Get the tag's address. More... | |
uint8_t | GetHoplimit (void) const |
Get the tag's Hop Limit. More... | |
virtual TypeId | GetInstanceTypeId (void) const |
uint32_t | GetRecvIf (void) const |
Get the tag's receiving interface. More... | |
virtual uint32_t | GetSerializedSize (void) const |
uint8_t | GetTrafficClass (void) const |
Get the tag's Traffic Class. More... | |
virtual void | Print (std::ostream &os) const |
virtual void | Serialize (TagBuffer i) const |
void | SetAddress (Ipv6Address addr) |
Set the tag's address. More... | |
void | SetHoplimit (uint8_t ttl) |
Set the tag's Hop Limit. More... | |
void | SetRecvIf (uint32_t ifindex) |
Set the tag's receiving interface. More... | |
void | SetTrafficClass (uint8_t tclass) |
Set the tag's Traffic Class. More... | |
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) |
Get the type ID. More... | |
Static Public Member Functions inherited from ns3::Tag | |
static TypeId | GetTypeId (void) |
Static Public Member Functions inherited from ns3::ObjectBase | |
static TypeId | GetTypeId (void) |
Get the type ID. More... | |
Private Attributes | |
Ipv6Address | m_addr |
the packet address (src or dst) More... | |
uint8_t | m_hoplimit |
the Hop Limit More... | |
uint8_t | m_ifindex |
the Interface index More... | |
uint8_t | m_tclass |
the Traffic Class 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... | |
This class implements a tag that carries socket ancillary data to the socket interface.
This is used like socket option of IP_PKTINFO/IPV6_PKTINFO in RFC 3542
This tag in the send direction is presently not enabled but we would accept a patch along those lines in the future. To include the nexthop in the send direction would increase the size of the tag beyond 20 bytes, so in that case, we recommend that an additional tag be used to carry the IPv6 next hop address.
Definition at line 44 of file ipv6-packet-info-tag.h.
ns3::Ipv6PacketInfoTag::Ipv6PacketInfoTag | ( | ) |
Definition at line 28 of file ipv6-packet-info-tag.cc.
|
virtual |
i | the buffer to read data from. |
Read the content of the tag from the provided tag buffer. DO NOT attempt to read more bytes than you wrote with Tag::Serialize.
Implements ns3::Tag.
Definition at line 119 of file ipv6-packet-info-tag.cc.
References ns3::Ipv6Address::Deserialize(), m_addr, m_hoplimit, m_ifindex, m_tclass, ns3::TagBuffer::Read(), and ns3::TagBuffer::ReadU8().
Ipv6Address ns3::Ipv6PacketInfoTag::GetAddress | ( | void | ) | const |
Get the tag's address.
Definition at line 43 of file ipv6-packet-info-tag.cc.
References m_addr.
uint8_t ns3::Ipv6PacketInfoTag::GetHoplimit | ( | void | ) | const |
Get the tag's Hop Limit.
Definition at line 67 of file ipv6-packet-info-tag.cc.
References m_hoplimit.
|
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 95 of file ipv6-packet-info-tag.cc.
References GetTypeId().
uint32_t ns3::Ipv6PacketInfoTag::GetRecvIf | ( | void | ) | const |
Get the tag's receiving interface.
Definition at line 55 of file ipv6-packet-info-tag.cc.
References m_ifindex.
|
virtual |
This method is typically invoked by Packet::AddPacketTag or Packet::AddByteTag just prior to calling Tag::Serialize.
Implements ns3::Tag.
Definition at line 101 of file ipv6-packet-info-tag.cc.
uint8_t ns3::Ipv6PacketInfoTag::GetTrafficClass | ( | void | ) | const |
Get the tag's Traffic Class.
Definition at line 79 of file ipv6-packet-info-tag.cc.
References m_tclass.
|
static |
Get the type ID.
Definition at line 86 of file ipv6-packet-info-tag.cc.
References ns3::TypeId::SetParent().
Referenced by GetInstanceTypeId().
|
virtual |
os | the stream to print to |
This method is typically invoked from the Packet::PrintByteTags or Packet::PrintPacketTags methods.
Implements ns3::Tag.
Definition at line 129 of file ipv6-packet-info-tag.cc.
References m_addr, m_hoplimit, m_ifindex, and m_tclass.
|
virtual |
i | the buffer to write data into. |
Write the content of the tag in the provided tag buffer. DO NOT attempt to write more bytes than you requested with Tag::GetSerializedSize.
Implements ns3::Tag.
Definition at line 109 of file ipv6-packet-info-tag.cc.
References m_addr, m_hoplimit, m_ifindex, m_tclass, ns3::Ipv6Address::Serialize(), ns3::TagBuffer::Write(), and ns3::TagBuffer::WriteU8().
void ns3::Ipv6PacketInfoTag::SetAddress | ( | Ipv6Address | addr | ) |
Set the tag's address.
addr | the address |
Definition at line 37 of file ipv6-packet-info-tag.cc.
References m_addr.
void ns3::Ipv6PacketInfoTag::SetHoplimit | ( | uint8_t | ttl | ) |
Set the tag's Hop Limit.
ttl | the hop limit |
Definition at line 61 of file ipv6-packet-info-tag.cc.
References m_hoplimit.
void ns3::Ipv6PacketInfoTag::SetRecvIf | ( | uint32_t | ifindex | ) |
Set the tag's receiving interface.
ifindex | the interface index |
Definition at line 49 of file ipv6-packet-info-tag.cc.
References m_ifindex.
Referenced by ns3::Ipv6RawSocketImpl::ForwardUp(), and ns3::UdpSocketImpl::ForwardUp6().
void ns3::Ipv6PacketInfoTag::SetTrafficClass | ( | uint8_t | tclass | ) |
Set the tag's Traffic Class.
tclass | the Traffic Class |
Definition at line 73 of file ipv6-packet-info-tag.cc.
References m_tclass.
|
private |
the packet address (src or dst)
Definition at line 134 of file ipv6-packet-info-tag.h.
Referenced by Deserialize(), GetAddress(), Print(), Serialize(), and SetAddress().
|
private |
the Hop Limit
Definition at line 136 of file ipv6-packet-info-tag.h.
Referenced by Deserialize(), GetHoplimit(), Print(), Serialize(), and SetHoplimit().
|
private |
the Interface index
Definition at line 135 of file ipv6-packet-info-tag.h.
Referenced by Deserialize(), GetRecvIf(), Print(), Serialize(), and SetRecvIf().
|
private |
the Traffic Class
Definition at line 137 of file ipv6-packet-info-tag.h.
Referenced by Deserialize(), GetTrafficClass(), Print(), Serialize(), and SetTrafficClass().