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

@@ -34,7 +34,6 @@ class EthernetGenerator : public Application
void Setup(Ptr<EthernetNetDevice> net);
typedef TracedCallback<Ptr<const Packet>, uint16_t> PacketVlanTraceCallback;
protected:
void DoDispose() override;
@@ -66,7 +65,7 @@ class EthernetGenerator : public Application
EventId m_sendEvent; //!< Event to send the next packet
Ptr<EthernetNetDevice> m_net;
PacketVlanTraceCallback m_pktSentTrace;
TracedCallback<Ptr<const Packet>> m_pktSentTrace;
static const uint16_t MIN_PAYLOAD_SIZE = 42; //Min payload size with VLAN
};