From b1f5945085bc8a6e746ea712f20177f8d1b99eb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deronne?= Date: Sun, 29 Mar 2020 12:25:08 +0200 Subject: [PATCH] wifi: (fixes #165) Notify station manager when a BlockAck has not been received after the transmission of an A-MPDU --- src/wifi/model/qos-txop.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wifi/model/qos-txop.cc b/src/wifi/model/qos-txop.cc index 96a3c3ce4..27360a56b 100644 --- a/src/wifi/model/qos-txop.cc +++ b/src/wifi/model/qos-txop.cc @@ -970,6 +970,7 @@ QosTxop::MissedBlockAck (uint8_t nMpdus) else { NS_LOG_DEBUG ("Retransmit"); + m_stationManager->ReportDataFailed (m_currentHdr.GetAddr1 (), &m_currentHdr, m_currentPacket->GetSize ()); m_baManager->NotifyMissedBlockAck (m_currentHdr.GetAddr1 (), tid); m_currentPacket = 0; UpdateFailedCw ();