DSR Error Buffer Entry. More...
#include "dsr-errorbuff.h"
Public Member Functions | |
DsrErrorBuffEntry (Ptr< const Packet > pa=nullptr, Ipv4Address d=Ipv4Address(), Ipv4Address s=Ipv4Address(), Ipv4Address n=Ipv4Address(), Time exp=Simulator::Now(), uint8_t p=0) | |
Create an DsrErrorBuffEntry with the given parameters. More... | |
Ipv4Address | GetDestination () const |
Get destination address. More... | |
Time | GetExpireTime () const |
Get expire time. More... | |
Ipv4Address | GetNextHop () const |
Get next hop. More... | |
Ptr< const Packet > | GetPacket () const |
Get packet from entry. More... | |
uint8_t | GetProtocol () const |
Get protocol number. More... | |
Ipv4Address | GetSource () const |
Get source address. More... | |
bool | operator== (const DsrErrorBuffEntry &o) const |
Compare send buffer entries. More... | |
void | SetDestination (Ipv4Address d) |
Set destination address. More... | |
void | SetExpireTime (Time exp) |
Set expire time. More... | |
void | SetNextHop (Ipv4Address n) |
Set next hop. More... | |
void | SetPacket (Ptr< const Packet > p) |
Set packet for entry. More... | |
void | SetProtocol (uint8_t p) |
Set protocol number. More... | |
void | SetSource (Ipv4Address s) |
Set source address. More... | |
Private Attributes | |
Ipv4Address | m_dst |
Destination address. More... | |
Time | m_expire |
Expire time for queue entry. More... | |
Ipv4Address | m_nextHop |
Nexthop address. More... | |
Ptr< const Packet > | m_packet |
Data packet. More... | |
uint8_t | m_protocol |
The protocol number. More... | |
Ipv4Address | m_source |
Source address. More... | |
DSR Error Buffer Entry.
Definition at line 47 of file dsr-errorbuff.h.
|
inline |
Create an DsrErrorBuffEntry with the given parameters.
pa | packet |
d | IPv4 address of the destination |
s | IPv4 address of the source |
n | IPv4 address of the next hop |
exp | expiration time |
p | protocol number |
Definition at line 60 of file dsr-errorbuff.h.
|
inline |
Get destination address.
Definition at line 109 of file dsr-errorbuff.h.
References m_dst.
Referenced by ns3::dsr::DsrErrorBuffer::Drop(), and ns3::dsr::DsrErrorBuffer::Enqueue().
|
inline |
Get expire time.
Definition at line 172 of file dsr-errorbuff.h.
References m_expire, and ns3::Simulator::Now().
Referenced by ns3::dsr::IsExpired::operator()().
|
inline |
Get next hop.
Definition at line 145 of file dsr-errorbuff.h.
References m_nextHop.
Referenced by ns3::dsr::DsrErrorBuffer::DropLink(), and ns3::dsr::DsrErrorBuffer::Enqueue().
Get packet from entry.
Definition at line 91 of file dsr-errorbuff.h.
References m_packet.
Referenced by ns3::dsr::DsrErrorBuffer::Dequeue(), ns3::dsr::DsrErrorBuffer::Drop(), ns3::dsr::DsrErrorBuffer::DropLink(), ns3::dsr::DsrErrorBuffer::Enqueue(), and ns3::dsr::DsrRouting::SendPacketFromBuffer().
|
inline |
Get protocol number.
Definition at line 190 of file dsr-errorbuff.h.
References m_protocol.
|
inline |
Get source address.
Definition at line 127 of file dsr-errorbuff.h.
References m_source.
Referenced by ns3::dsr::DsrErrorBuffer::DropLink(), and ns3::dsr::DsrErrorBuffer::Enqueue().
|
inline |
Compare send buffer entries.
o | another DsrErrorBuffEntry |
Definition at line 80 of file dsr-errorbuff.h.
References m_dst, m_expire, m_nextHop, m_packet, and m_source.
|
inline |
Set destination address.
d | the destination IPv4 address |
Definition at line 118 of file dsr-errorbuff.h.
References m_dst.
|
inline |
Set expire time.
exp | the expire time |
Definition at line 163 of file dsr-errorbuff.h.
References m_expire, and ns3::Simulator::Now().
Referenced by ns3::dsr::DsrErrorBuffer::Enqueue().
|
inline |
Set next hop.
n | the next hop IPv4 address |
Definition at line 154 of file dsr-errorbuff.h.
References m_nextHop.
Set packet for entry.
p | the packet |
Definition at line 100 of file dsr-errorbuff.h.
References m_packet.
|
inline |
Set protocol number.
p | the protocol number |
Definition at line 181 of file dsr-errorbuff.h.
References m_protocol.
|
inline |
Set source address.
s | the source IPv4 address |
Definition at line 136 of file dsr-errorbuff.h.
References m_source.
|
private |
Destination address.
destination address
Definition at line 199 of file dsr-errorbuff.h.
Referenced by GetDestination(), operator==(), and SetDestination().
|
private |
Expire time for queue entry.
expiration time
Definition at line 205 of file dsr-errorbuff.h.
Referenced by GetExpireTime(), operator==(), and SetExpireTime().
|
private |
Nexthop address.
next hop
Definition at line 203 of file dsr-errorbuff.h.
Referenced by GetNextHop(), operator==(), and SetNextHop().
Data packet.
the packet
Definition at line 197 of file dsr-errorbuff.h.
Referenced by GetPacket(), operator==(), and SetPacket().
|
private |
The protocol number.
Definition at line 207 of file dsr-errorbuff.h.
Referenced by GetProtocol(), and SetProtocol().
|
private |
Source address.
source address
Definition at line 201 of file dsr-errorbuff.h.
Referenced by GetSource(), operator==(), and SetSource().