22 #include "ns3/uinteger.h"
43 .AddAttribute (
"UnresolvedQueueSize",
44 "Size of the queue for packets pending an NA reply.",
47 MakeUintegerChecker<uint32_t> ())
109 entry->SetIpv6Address (to);
120 if ((*i).second == entry)
158 m_reachableTimer (
Timer::CANCEL_ON_DESTROY),
159 m_retransTimer (
Timer::CANCEL_ON_DESTROY),
160 m_probeTimer (
Timer::CANCEL_ON_DESTROY),
161 m_delayTimer (
Timer::CANCEL_ON_DESTROY),
162 m_lastReachabilityConfirmation (Seconds (0.0)),
184 if (m_waiting.size () >=
m_ndCache->GetUnresQlen ())
188 m_waiting.remove (0);
190 m_waiting.push_back (p);
213 if (m_ipv6Address.IsLinkLocal ())
215 addr =
m_ndCache->GetInterface ()->GetLinkLocalAddress ().GetAddress ();;
217 else if (!m_ipv6Address.IsAny ())
219 addr =
m_ndCache->GetInterface ()->GetAddressMatchingDestination (m_ipv6Address).GetAddress ();
229 if (GetNSRetransmit () < icmpv6->MAX_MULTICAST_SOLICIT)
235 StartRetransmitTimer ();
240 if (malformedPacket == 0)
242 malformedPacket = Create<Packet> ();
261 if (m_ipv6Address.IsLinkLocal ())
263 addr =
m_ndCache->GetInterface ()->GetLinkLocalAddress ().GetAddress ();
265 else if (!m_ipv6Address.IsAny ())
267 addr =
m_ndCache->GetInterface ()->GetAddressMatchingDestination (m_ipv6Address).GetAddress ();
281 Ptr<Packet> p = icmpv6->ForgeNS (addr, m_ipv6Address, m_ipv6Address,
m_ndCache->GetDevice ()->GetAddress ());
284 ResetNSRetransmit ();
295 if (GetNSRetransmit () < icmpv6->MAX_UNICAST_SOLICIT)
299 if (m_ipv6Address.IsLinkLocal ())
301 addr =
m_ndCache->GetInterface ()->GetLinkLocalAddress ().GetAddress ();
303 else if (!m_ipv6Address.IsAny ())
305 addr =
m_ndCache->GetInterface ()->GetAddressMatchingDestination (m_ipv6Address).GetAddress ();
321 Ptr<Packet> p = icmpv6->ForgeNS (addr, m_ipv6Address, m_ipv6Address,
m_ndCache->GetDevice ()->GetAddress ());
337 m_ipv6Address = ipv6Address;
343 return m_nsRetransmit;
361 return m_lastReachabilityConfirmation;
374 m_reachableTimer.Schedule ();
380 m_reachableTimer.Cancel ();
388 m_probeTimer.Schedule ();
394 m_probeTimer.Cancel ();
395 ResetNSRetransmit ();
404 m_delayTimer.Schedule ();
410 m_delayTimer.Cancel ();
411 ResetNSRetransmit ();
419 m_retransTimer.Schedule ();
425 m_retransTimer.Cancel ();
426 ResetNSRetransmit ();
432 m_state = INCOMPLETE;
436 m_waiting.push_back (p);
483 return (m_state == STALE);
489 return (m_state == REACHABLE);
495 return (m_state ==
DELAY);
501 return (m_state == INCOMPLETE);
507 return (m_state == PROBE);
bool IsAny() const
If the IPv6 address is the "Any" address.
void FunctionDelayTimeout()
Function called when delay timer timeout.
static TypeId GetTypeId()
Get the type ID.
keep track of time values and allow control of global simulation resolution
Time GetLastReachabilityConfirmation() const
Get the time of last reachability confirmation.
smart pointer class similar to boost::intrusive_ptr
#define NS_LOG_FUNCTION(parameters)
void MarkIncomplete(Ptr< Packet > p)
Changes the state to this entry to INCOMPLETE.
NS_LOG_COMPONENT_DEFINE("GrantedTimeWindowMpiInterface")
Address GetMacAddress() const
Get the MAC address of this entry.
NdiscCache::Entry * Add(Ipv6Address to)
Add an entry.
void SetUnresQlen(uint32_t unresQlen)
Set the max number of waiting packet.
IPv6 layer implementation.
#define NS_ASSERT(condition)
NS_OBJECT_ENSURE_REGISTERED(NullMessageSimulatorImpl)
void StopReachableTimer()
Stop the reachable timer.
virtual void DoDispose(void)
This method is called by Object::Dispose or by the object's destructor, whichever comes first...
#define NS_LOG_FUNCTION_NOARGS()
Output the name of the function.
a polymophic address class
uint32_t GetUnresQlen()
Get the max number of waiting packet.
Ptr< Ipv6Interface > GetInterface() const
Get the Ipv6Interface associated with this cache.
bool IsDelay() const
Is the entry DELAY.
Ptr< Ipv6Interface > m_interface
the interface.
void FunctionRetransmitTimeout()
Function called when retransmit timer timeout.
void MarkReachable()
Changes the state to this entry to REACHABLE.
void Flush()
Flush the cache.
Hold an unsigned integer type.
#define DELAY(time)
Gets the delay between a given time and the current time.
Doxygen introspection did not find any typical Config paths.
static const uint32_t REACHABLE_TIME
Neighbor Discovery node constants : reachable time.
void StopProbeTimer()
Stop probe timer.
void StartRetransmitTimer()
Start retransmit timer.
void ClearWaitingPacket()
Clear the waiting packet list.
Entry(NdiscCache *nd)
Constructor.
bool IsProbe() const
Is the entry PROBE.
void AddWaitingPacket(Ptr< Packet > p)
Add a packet (or replace old value) in the queue.
void StartDelayTimer()
Start delay timer.
void StartReachableTimer()
Start the reachable timer.
bool IsIncomplete() const
Is the entry INCOMPLETE.
void FunctionReachableTimeout()
Function called when reachable timer timeout.
void StartProbeTimer()
Start probe timer.
static const uint32_t DEFAULT_UNRES_QLEN
Default value for unres qlen.
void Remove(NdiscCache::Entry *entry)
Delete an entry.
void FunctionProbeTimeout()
Function called when probe timer timeout.
uint32_t m_unresQlen
Max number of packet stored in m_waiting.
void SetMacAddress(Address mac)
Set the MAC address of this entry.
Describes an IPv6 address.
NdiscCache::Entry * Lookup(Ipv6Address dst)
Lookup in the cache.
void MarkStale()
Changes the state to this entry to STALE.
void IncNSRetransmit()
Increment NS retransmit.
void DoDispose()
Dispose this object.
void SetIpv6Address(Ipv6Address ipv6Address)
Set the IPv6 address.
void MarkDelay()
Change the state to this entry to DELAY.
static const uint32_t RETRANS_TIMER
Neighbor Discovery node constants : retransmission timer.
void StopRetransmitTimer()
Stop retransmit timer.
void UpdateLastReachabilityconfirmation()
Update the time of last reachability confirmation.
void StopDelayTimer()
Stop delay timer.
bool IsRouter() const
If the entry is a host or a router.
void SetDevice(Ptr< NetDevice > device, Ptr< Ipv6Interface > interface)
Set the device and interface.
Cache m_ndCache
A list of Entry.
A record that holds information about an NdiscCache entry.
void SetRouter(bool router)
Set the node type.
static const uint8_t DELAY_FIRST_PROBE_TIME
Neighbor Discovery node constants : delay for the first probe.
a base class which provides memory management and object aggregation
sgi::hash_map< Ipv6Address, NdiscCache::Entry *, Ipv6AddressHash >::iterator CacheI
Neighbor Discovery Cache container iterator.
bool IsReachable() const
Is the entry REACHABLE.
a unique identifier for an interface.
void ResetNSRetransmit()
Reset NS retransmit (=0).
Ptr< NetDevice > GetDevice() const
Get the NetDevice associated with this cache.
TypeId SetParent(TypeId tid)
void MarkProbe()
Changes the state to this entry to PROBE.
static const uint16_t PROT_NUMBER
The protocol number for IPv6 (0x86DD).
bool IsStale() const
Is the entry STALE.
static Ipv6Address MakeSolicitedAddress(Ipv6Address addr)
Make the solicited IPv6 address.
Ptr< NetDevice > m_device
The NetDevice.
uint8_t GetNSRetransmit() const
Get the number of NS retransmit.