Bugzilla – Attachment #2103: patch for solution-2 for bug #2145
ArpCache::Entry::IsAlive (void)
{
NS_LOG_FUNCTION (this);
return (m_state == ALIVE) ? true : false;
return (m_state == ALIVE || m_state == PERMANENT) ? true : false;
}
bool
ArpCache::Entry::IsWaitReply (void)