Put back the simulation time in 30 seconds, else we generate huge trace files.
authorGustavo J. A. M. Carneiro <gjc@inescporto.pt>
Fri Feb 01 18:39:37 2008 +0000 (2008-02-01)
changeset 2298f61e41169911
parent 2297 127c9adfd39f
child 2299 0b9193f38f18
Put back the simulation time in 30 seconds, else we generate huge trace files.
examples/simple-point-to-point-olsr.cc
     1.1 --- a/examples/simple-point-to-point-olsr.cc	Fri Feb 01 18:24:39 2008 +0000
     1.2 +++ b/examples/simple-point-to-point-olsr.cc	Fri Feb 01 18:39:37 2008 +0000
     1.3 @@ -212,8 +212,8 @@
     1.4    pcaptrace.TraceAllIp ();
     1.5  
     1.6    NS_LOG_INFO ("Run Simulation.");
     1.7 -  Simulator::StopAt (Seconds (300));
     1.8 -  Simulator::Run ();    
     1.9 +  Simulator::StopAt (Seconds (30));
    1.10 +  Simulator::Run ();
    1.11    Simulator::Destroy ();
    1.12    NS_LOG_INFO ("Done.");
    1.13  }