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

(-)d14e2430213d (-6 / +2 lines)
 Lines 315-320    Link Here 
315
  NS_LOG_FUNCTION (this);
315
  NS_LOG_FUNCTION (this);
316
  if (EnableHello)
316
  if (EnableHello)
317
    {
317
    {
318
      m_htimer.SetFunction (&RoutingProtocol::HelloTimerExpire, this);
319
      m_htimer.Schedule (MilliSeconds (m_uniformRandomVariable->GetInteger (0, 100)));
318
      m_nb.ScheduleTimer ();
320
      m_nb.ScheduleTimer ();
319
    }
321
    }
320
  m_rreqRateLimitTimer.SetFunction (&RoutingProtocol::RreqRateLimitTimerExpire,
322
  m_rreqRateLimitTimer.SetFunction (&RoutingProtocol::RreqRateLimitTimerExpire,
 Lines 579-590    Link Here 
579
  NS_ASSERT (ipv4 != 0);
581
  NS_ASSERT (ipv4 != 0);
580
  NS_ASSERT (m_ipv4 == 0);
582
  NS_ASSERT (m_ipv4 == 0);
581
583
582
  if (EnableHello)
583
    {
584
      m_htimer.SetFunction (&RoutingProtocol::HelloTimerExpire, this);
585
      m_htimer.Schedule (MilliSeconds (m_uniformRandomVariable->GetInteger (0, 100)));
586
    }
587
588
  m_ipv4 = ipv4;
584
  m_ipv4 = ipv4;

Return to bug 1497