Remove old traffic generator stuff

This commit is contained in:
2026-03-18 08:40:42 +01:00
parent 7c929cae0f
commit 64949975cf
8 changed files with 6 additions and 226 deletions

View File

@@ -81,7 +81,7 @@ EthernetGenerator::GetTypeId()
"Trace source indicating a packet was given to the netDevice"
"by the application",
MakeTraceSourceAccessor(&EthernetGenerator::m_pktSentTrace),
"ns3::EthernetGenerator::PacketVlanTraceCallback");
"ns3::Packet::TracedCallback");
return tid;
}
@@ -160,7 +160,7 @@ EthernetGenerator::Send()
else{
m_net->Send(p, m_destAddress, 0xEDE1, m_vid, m_pcp, m_dei);
}
m_pktSentTrace(p, m_vid);
m_pktSentTrace(p);
}
} // Namespace ns3