A Set of Fragment belonging to the same packet (src, dst, identification and proto) More...
Public Member Functions | |
Fragments () | |
Constructor. | |
void | AddFragment (Ptr< Packet > fragment, uint16_t fragmentOffset, bool moreFragment) |
Add a fragment. | |
Ptr< Packet > | GetPacket () const |
Get the entire packet. | |
Ptr< Packet > | GetPartialPacket () const |
Get the complete part of the packet. | |
FragmentsTimeoutsListI_t | GetTimeoutIter () |
Get the Timeout iterator. | |
bool | IsEntire () const |
If all fragments have been added. | |
void | SetTimeoutIter (FragmentsTimeoutsListI_t iter) |
Set the Timeout iterator. | |
Public Member Functions inherited from ns3::SimpleRefCount< Fragments > | |
SimpleRefCount () | |
Default constructor. | |
SimpleRefCount (const SimpleRefCount &o) | |
Copy constructor. | |
uint32_t | GetReferenceCount () const |
Get the reference count of the object. | |
SimpleRefCount & | operator= (const SimpleRefCount &o) |
Assignment operator. | |
void | Ref () const |
Increment the reference count. | |
void | Unref () const |
Decrement the reference count. | |
Private Attributes | |
std::list< std::pair< Ptr< Packet >, uint16_t > > | m_fragments |
The current fragments. | |
bool | m_moreFragment |
True if other fragments will be sent. | |
FragmentsTimeoutsListI_t | m_timeoutIter |
Timeout iterator to "event" handler. | |
A Set of Fragment belonging to the same packet (src, dst, identification and proto)
Definition at line 544 of file ipv4-l3-protocol.h.
ns3::Ipv4L3Protocol::Fragments::Fragments | ( | ) |
void ns3::Ipv4L3Protocol::Fragments::AddFragment | ( | Ptr< Packet > | fragment, |
uint16_t | fragmentOffset, | ||
bool | moreFragment ) |
Add a fragment.
fragment | the fragment |
fragmentOffset | the offset of the fragment |
moreFragment | the bit "More Fragment" |
Definition at line 1584 of file ipv4-l3-protocol.cc.
References ns3::Ipv4L3Protocol::m_fragments, and NS_LOG_FUNCTION.
Get the entire packet.
Definition at line 1639 of file ipv4-l3-protocol.cc.
References ns3::Ipv4L3Protocol::m_fragments, NS_LOG_FUNCTION, and NS_LOG_LOGIC.
Get the complete part of the packet.
Definition at line 1677 of file ipv4-l3-protocol.cc.
References ns3::Create(), ns3::Ipv4L3Protocol::m_fragments, NS_LOG_FUNCTION, and NS_LOG_LOGIC.
Ipv4L3Protocol::FragmentsTimeoutsListI_t ns3::Ipv4L3Protocol::Fragments::GetTimeoutIter | ( | ) |
bool ns3::Ipv4L3Protocol::Fragments::IsEntire | ( | ) | const |
If all fragments have been added.
Definition at line 1609 of file ipv4-l3-protocol.cc.
References ns3::Ipv4L3Protocol::m_fragments, NS_LOG_FUNCTION, and NS_LOG_LOGIC.
void ns3::Ipv4L3Protocol::Fragments::SetTimeoutIter | ( | FragmentsTimeoutsListI_t | iter | ) |
Set the Timeout iterator.
iter | The iterator. |
Definition at line 1712 of file ipv4-l3-protocol.cc.
The current fragments.
Definition at line 599 of file ipv4-l3-protocol.h.
|
private |
True if other fragments will be sent.
Definition at line 594 of file ipv4-l3-protocol.h.
|
private |
Timeout iterator to "event" handler.
Definition at line 604 of file ipv4-l3-protocol.h.