<div dir="ltr"><div>I am using ConsumerZipfMandelbrot<br></div><div><br></div><div>void</div>ConsumerZipfMandelbrot::ScheduleNextPacket()<br>{<br><br>  if (m_firstTime) {<br>    m_sendEvent = Simulator::Schedule(Seconds(0.0), &ConsumerZipfMandelbrot::SendPacket, this);<br>    m_firstTime = false;<br>  }<br>  else if (!m_sendEvent.IsRunning())<br>    /*m_sendEvent = Simulator::Schedule((m_random == 0) ? Seconds(1.0 / m_frequency)<br>                                                      : Seconds(m_random->GetValue()),<br>                                      &ConsumerZipfMandelbrot::SendPacket, this);*/<br><br>        m_sendEvent = Simulator::Schedule( Seconds(1.0 / m_frequency)<br>                                                      , &ConsumerZipfMandelbrot::SendPacket, this);<br><div>}</div><div>Here next packets are scheduled after (1.0 / m_frequency). The value will be some constant. So I thought the number of incoming interests be same.<br></div></div>