A Set of Fragment belonging to the same packet (src, dst, identification and proto) More...
Inheritance diagram for ns3::Ipv4L3Protocol::Fragments:
Collaboration diagram for ns3::Ipv4L3Protocol::Fragments: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 545 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 1582 of file ipv4-l3-protocol.cc.
References ns3::Create(), ns3::Ipv4L3Protocol::m_fragments, and NS_LOG_FUNCTION.
Here is the call graph for this function:Get the entire packet.
Definition at line 1637 of file ipv4-l3-protocol.cc.
References ns3::Create(), ns3::Ipv4L3Protocol::m_fragments, NS_LOG_FUNCTION, and NS_LOG_LOGIC.
Here is the call graph for this function:Get the complete part of the packet.
Definition at line 1675 of file ipv4-l3-protocol.cc.
References ns3::Create(), ns3::Ipv4L3Protocol::m_fragments, NS_LOG_FUNCTION, and NS_LOG_LOGIC.
Here is the call graph for this function:| Ipv4L3Protocol::FragmentsTimeoutsListI_t ns3::Ipv4L3Protocol::Fragments::GetTimeoutIter | ( | ) |
| bool ns3::Ipv4L3Protocol::Fragments::IsEntire | ( | ) | const |
If all fragments have been added.
Definition at line 1607 of file ipv4-l3-protocol.cc.
References ns3::Create(), ns3::Ipv4L3Protocol::m_fragments, NS_LOG_FUNCTION, and NS_LOG_LOGIC.
Here is the call graph for this function:| void ns3::Ipv4L3Protocol::Fragments::SetTimeoutIter | ( | FragmentsTimeoutsListI_t | iter | ) |
Set the Timeout iterator.
| iter | The iterator. |
Definition at line 1710 of file ipv4-l3-protocol.cc.
References ns3::Create().
Here is the call graph for this function:The current fragments.
Definition at line 600 of file ipv4-l3-protocol.h.
|
private |
True if other fragments will be sent.
Definition at line 595 of file ipv4-l3-protocol.h.
|
private |
Timeout iterator to "event" handler.
Definition at line 605 of file ipv4-l3-protocol.h.