解决NetAnim"Max Packets per trace file exceeded"问题

此问题是xml文件超过数据分组导致的,只需要在函数中添加

AnimationInterface anim("test_trace.xml");
anim.SetMaxPktsPerTraceFile(99999999999999);

即可解决。

void ns3::AnimationInterface::SetMaxPktsPerTraceFile    (uint64_t   maxPktsPerFile) 

Set Max packets per trace file.

maxPktsPerFile
The maximum number of packets per trace file. 

你可能感兴趣的:(解决NetAnim"Max Packets per trace file exceeded"问题)