Put back the simulation time in 30 seconds, else we generate huge trace files.

This commit is contained in:
Gustavo J. A. M. Carneiro
2008-02-01 18:39:37 +00:00
parent 441e17174d
commit f262b76a41

View File

@@ -212,8 +212,8 @@ main (int argc, char *argv[])
pcaptrace.TraceAllIp ();
NS_LOG_INFO ("Run Simulation.");
Simulator::StopAt (Seconds (300));
Simulator::Run ();
Simulator::StopAt (Seconds (30));
Simulator::Run ();
Simulator::Destroy ();
NS_LOG_INFO ("Done.");
}