Listener for MacLow events. More...
Public Member Functions | |
TransmissionListener (DcaTxop *txop) | |
Create a TransmissionListener for the given DcaTxop. More... | |
virtual | ~TransmissionListener () |
virtual void | Cancel (void) |
Invoked if this transmission was canceled one way or another. More... | |
virtual void | EndTxNoAck (void) |
Invoked upon the end of the transmission of a frame that does not require an ACK (e.g., broadcast and multicast frames). More... | |
virtual void | GotAck (double snr, WifiMode txMode) |
virtual void | GotCts (double snr, WifiMode txMode) |
virtual void | MissedAck (void) |
ns3::MacLow did not receive an expected ACK within AckTimeout. More... | |
virtual void | MissedCts (void) |
ns3::MacLow did not receive an expected CTS within CtsTimeout. More... | |
virtual void | StartNext (void) |
Invoked when ns3::MacLow wants to start a new transmission as configured by MacLowTransmissionParameters::EnableNextData. More... | |
![]() | |
MacLowTransmissionListener () | |
virtual | ~MacLowTransmissionListener () |
virtual void | GotBlockAck (const CtrlBAckResponseHeader *blockAck, Mac48Address source) |
virtual void | MissedBlockAck (void) |
ns3::MacLow did not receive an expected BLOCK_ACK within BlockAckTimeout. More... | |
Private Attributes | |
DcaTxop * | m_txop |
|
inline |
Create a TransmissionListener for the given DcaTxop.
txop |
Definition at line 83 of file dca-txop.cc.
|
inlinevirtual |
Definition at line 88 of file dca-txop.cc.
|
inlinevirtual |
Invoked if this transmission was canceled one way or another.
When this method is invoked, you can assume that the packet has not been passed down the stack to the PHY.
Implements ns3::MacLowTransmissionListener.
Definition at line 110 of file dca-txop.cc.
References ns3::DcaTxop::Cancel(), and m_txop.
|
inlinevirtual |
Invoked upon the end of the transmission of a frame that does not require an ACK (e.g., broadcast and multicast frames).
Implements ns3::MacLowTransmissionListener.
Definition at line 114 of file dca-txop.cc.
References ns3::DcaTxop::EndTxNoAck(), and m_txop.
|
inlinevirtual |
snr | the snr of the ack |
txMode | the transmission mode of the ack |
ns3::MacLow received an expected ACL within AckTimeout. The snr and txMode arguments are not valid when SUPER_FAST_ACK is used.
Implements ns3::MacLowTransmissionListener.
Definition at line 98 of file dca-txop.cc.
References ns3::DcaTxop::GotAck(), and m_txop.
|
inlinevirtual |
snr | the snr of the cts |
txMode | the txMode of the cts |
ns3::MacLow received an expected CTS within CtsTimeout.
Implements ns3::MacLowTransmissionListener.
Definition at line 90 of file dca-txop.cc.
References ns3::DcaTxop::GotCts(), and m_txop.
|
inlinevirtual |
ns3::MacLow did not receive an expected ACK within AckTimeout.
Implements ns3::MacLowTransmissionListener.
Definition at line 102 of file dca-txop.cc.
References m_txop, and ns3::DcaTxop::MissedAck().
|
inlinevirtual |
ns3::MacLow did not receive an expected CTS within CtsTimeout.
Implements ns3::MacLowTransmissionListener.
Definition at line 94 of file dca-txop.cc.
References m_txop, and ns3::DcaTxop::MissedCts().
|
inlinevirtual |
Invoked when ns3::MacLow wants to start a new transmission as configured by MacLowTransmissionParameters::EnableNextData.
The listener is expected to call again MacLow::StartTransmission with the "next" data to send.
Implements ns3::MacLowTransmissionListener.
Definition at line 106 of file dca-txop.cc.
References m_txop, and ns3::DcaTxop::StartNext().
|
private |
Definition at line 120 of file dca-txop.cc.
Referenced by Cancel(), EndTxNoAck(), GotAck(), GotCts(), MissedAck(), MissedCts(), and StartNext().