Helper class used to remember already seen packets and detect duplicates. More...
#include "aodv-dpd.h"
Public Member Functions | |
DuplicatePacketDetection (Time lifetime) | |
Constructor. More... | |
Time | GetLifetime () const |
Get duplicate record lifetime. More... | |
bool | IsDuplicate (Ptr< const Packet > p, const Ipv4Header &header) |
Check if the packet is a duplicate. More... | |
void | SetLifetime (Time lifetime) |
Set duplicate record lifetime. More... | |
Private Attributes | |
IdCache | m_idCache |
Impl. More... | |
Helper class used to remember already seen packets and detect duplicates.
Currently duplicate detection is based on unique packet ID given by Packet::GetUid () This approach is known to be weak (ns3::Packet UID is an internal identifier and not intended for logical uniqueness in models) and should be changed.
Definition at line 44 of file aodv-dpd.h.
|
inline |
Constructor.
lifetime | the lifetime for added entries |
Definition at line 51 of file aodv-dpd.h.
Time ns3::aodv::DuplicatePacketDetection::GetLifetime | ( | ) | const |
Get duplicate record lifetime.
Definition at line 42 of file aodv-dpd.cc.
References ns3::aodv::IdCache::GetLifeTime(), and m_idCache.
bool ns3::aodv::DuplicatePacketDetection::IsDuplicate | ( | Ptr< const Packet > | p, |
const Ipv4Header & | header | ||
) |
Check if the packet is a duplicate.
If not, save information about this packet.
p | the packet to check |
header | the IP header to check |
Definition at line 30 of file aodv-dpd.cc.
References ns3::Ipv4Header::GetSource(), ns3::Packet::GetUid(), ns3::aodv::IdCache::IsDuplicate(), and m_idCache.
Referenced by ns3::aodv::RoutingProtocol::RouteInput().
void ns3::aodv::DuplicatePacketDetection::SetLifetime | ( | Time | lifetime | ) |
Set duplicate record lifetime.
lifetime | the lifetime for duplicate records |
Definition at line 36 of file aodv-dpd.cc.
References m_idCache, and ns3::aodv::IdCache::SetLifetime().
|
private |
Impl.
Definition at line 76 of file aodv-dpd.h.
Referenced by GetLifetime(), IsDuplicate(), and SetLifetime().