#include "aodv-rqueue.h"
Public Types | |
typedef Ipv4RoutingProtocol::ErrorCallback | ErrorCallback |
IPv4 routing error callback typedef. More... | |
typedef Ipv4RoutingProtocol::UnicastForwardCallback | UnicastForwardCallback |
IPv4 routing unicast forward callback typedef. More... | |
Public Member Functions | |
QueueEntry (Ptr< const Packet > pa=nullptr, const Ipv4Header &h=Ipv4Header(), UnicastForwardCallback ucb=UnicastForwardCallback(), ErrorCallback ecb=ErrorCallback(), Time exp=Simulator::Now()) | |
constructor More... | |
ErrorCallback | GetErrorCallback () const |
Get error callback. More... | |
Time | GetExpireTime () const |
Get expire time. More... | |
Ipv4Header | GetIpv4Header () const |
Get IPv4 header. More... | |
Ptr< const Packet > | GetPacket () const |
Get packet from entry. More... | |
UnicastForwardCallback | GetUnicastForwardCallback () const |
Get unicast forward callback. More... | |
bool | operator== (const QueueEntry &o) const |
Compare queue entries. More... | |
void | SetErrorCallback (ErrorCallback ecb) |
Set error callback. More... | |
void | SetExpireTime (Time exp) |
Set expire time. More... | |
void | SetIpv4Header (Ipv4Header h) |
Set IPv4 header. More... | |
void | SetPacket (Ptr< const Packet > p) |
Set packet in entry. More... | |
void | SetUnicastForwardCallback (UnicastForwardCallback ucb) |
Set unicast forward callback. More... | |
Private Attributes | |
ErrorCallback | m_ecb |
Error callback. More... | |
Time | m_expire |
Expire time for queue entry. More... | |
Ipv4Header | m_header |
IP header. More... | |
Ptr< const Packet > | m_packet |
Data packet. More... | |
UnicastForwardCallback | m_ucb |
Unicast forward callback. More... | |
AODV Queue Entry.
Definition at line 44 of file aodv-rqueue.h.
IPv4 routing error callback typedef.
Definition at line 50 of file aodv-rqueue.h.
IPv4 routing unicast forward callback typedef.
Definition at line 48 of file aodv-rqueue.h.
|
inline |
constructor
pa | the packet to add to the queue |
h | the Ipv4Header |
ucb | the UnicastForwardCallback function |
ecb | the ErrorCallback function |
exp | the expiration time |
Definition at line 61 of file aodv-rqueue.h.
|
inline |
Get error callback.
Definition at line 109 of file aodv-rqueue.h.
References m_ecb.
Referenced by ns3::aodv::QueueEntryTest::DoRun(), and ns3::aodv::RequestQueue::Drop().
|
inline |
Get expire time.
Definition at line 172 of file aodv-rqueue.h.
References m_expire, and ns3::Simulator::Now().
Referenced by ns3::aodv::QueueEntryTest::DoRun(), and ns3::aodv::IsExpired::operator()().
|
inline |
Get IPv4 header.
Definition at line 145 of file aodv-rqueue.h.
References m_header.
Referenced by ns3::aodv::QueueEntryTest::DoRun(), ns3::aodv::RequestQueue::Drop(), ns3::aodv::RequestQueue::Enqueue(), and ns3::aodv::RoutingProtocol::SendPacketFromQueue().
Get packet from entry.
Definition at line 127 of file aodv-rqueue.h.
References m_packet.
Referenced by ns3::aodv::QueueEntryTest::DoRun(), ns3::aodv::RequestQueue::Drop(), ns3::aodv::RequestQueue::Enqueue(), and ns3::aodv::RoutingProtocol::SendPacketFromQueue().
|
inline |
Get unicast forward callback.
Definition at line 91 of file aodv-rqueue.h.
References m_ucb.
Referenced by ns3::aodv::QueueEntryTest::DoRun(), and ns3::aodv::RoutingProtocol::SendPacketFromQueue().
|
inline |
Compare queue entries.
o | QueueEntry to compare |
Definition at line 79 of file aodv-rqueue.h.
References ns3::Ipv4Header::GetDestination(), m_expire, m_header, and m_packet.
|
inline |
Set error callback.
ecb | The error callback |
Definition at line 118 of file aodv-rqueue.h.
References m_ecb.
Referenced by ns3::aodv::QueueEntryTest::DoRun().
|
inline |
Set expire time.
exp | The expiration time |
Definition at line 163 of file aodv-rqueue.h.
References m_expire, and ns3::Simulator::Now().
Referenced by ns3::aodv::QueueEntryTest::DoRun(), and ns3::aodv::RequestQueue::Enqueue().
|
inline |
Set IPv4 header.
h | the IPv4 header |
Definition at line 154 of file aodv-rqueue.h.
References m_header.
Referenced by ns3::aodv::QueueEntryTest::DoRun().
Set packet in entry.
p | The packet |
Definition at line 136 of file aodv-rqueue.h.
References m_packet.
|
inline |
Set unicast forward callback.
ucb | The unicast callback |
Definition at line 100 of file aodv-rqueue.h.
References m_ucb.
Referenced by ns3::aodv::QueueEntryTest::DoRun().
|
private |
Error callback.
Definition at line 185 of file aodv-rqueue.h.
Referenced by GetErrorCallback(), and SetErrorCallback().
|
private |
Expire time for queue entry.
Definition at line 187 of file aodv-rqueue.h.
Referenced by GetExpireTime(), operator==(), and SetExpireTime().
|
private |
IP header.
Definition at line 181 of file aodv-rqueue.h.
Referenced by GetIpv4Header(), operator==(), and SetIpv4Header().
Data packet.
Definition at line 179 of file aodv-rqueue.h.
Referenced by GetPacket(), operator==(), and SetPacket().
|
private |
Unicast forward callback.
Definition at line 183 of file aodv-rqueue.h.
Referenced by GetUnicastForwardCallback(), and SetUnicastForwardCallback().