View | Details | Raw Unified | Return to bug 2145
Collapse All | Expand All

(-)arp-cache.cc (-1 / +1 lines)
 Lines 373-379    Link Here 
373
ArpCache::Entry::IsAlive (void)
373
ArpCache::Entry::IsAlive (void)
374
{
374
{
375
  NS_LOG_FUNCTION (this);
375
  NS_LOG_FUNCTION (this);
376
  return (m_state == ALIVE) ? true : false;
376
  return (m_state == ALIVE || m_state == PERMANENT) ? true : false;
377
}
377
}
378
bool
378
bool
379
ArpCache::Entry::IsWaitReply (void)
379
ArpCache::Entry::IsWaitReply (void)

Return to bug 2145