wifi: Remove WifiMac trace sources obsoleted since ns-3.34

This commit is contained in:
Stefano Avallone
2023-09-06 15:31:36 +02:00
parent 17456042c5
commit 7d660feb63
2 changed files with 0 additions and 16 deletions

View File

@@ -289,19 +289,6 @@ WifiMac::GetTypeId()
"up from the physical layer.",
MakeTraceSourceAccessor(&WifiMac::m_macRxDropTrace),
"ns3::Packet::TracedCallback")
.AddTraceSource("TxOkHeader",
"The header of successfully transmitted packet.",
MakeTraceSourceAccessor(&WifiMac::m_txOkCallback),
"ns3::WifiMacHeader::TracedCallback",
TypeId::OBSOLETE,
"Use the AckedMpdu trace instead.")
.AddTraceSource("TxErrHeader",
"The header of unsuccessfuly transmitted packet.",
MakeTraceSourceAccessor(&WifiMac::m_txErrCallback),
"ns3::WifiMacHeader::TracedCallback",
TypeId::OBSOLETE,
"Depending on the failure type, use the NAckedMpdu trace, the "
"DroppedMpdu trace or one of the traces associated with TX timeouts.")
.AddTraceSource("AckedMpdu",
"An MPDU that was successfully acknowledged, via either a "
"Normal Ack or a Block Ack.",

View File

@@ -1106,9 +1106,6 @@ class WifiMac : public Object
*/
TracedCallback<Ptr<const Packet>> m_macRxDropTrace;
TracedCallback<const WifiMacHeader&> m_txOkCallback; ///< transmit OK callback
TracedCallback<const WifiMacHeader&> m_txErrCallback; ///< transmit error callback
/**
* TracedCallback signature for MPDU drop events.
*