wifi: Fix the TID of QoS Null frames in response to BSRP TF

This commit is contained in:
Stefano Avallone
2022-08-19 16:12:35 +02:00
committed by Stefano Avallone
parent fe3a0ad5d8
commit 713c584284
2 changed files with 2 additions and 1 deletions

View File

@@ -39,6 +39,7 @@ Release 3-dev
- (wifi) Align default TXOP limit for VI and VO to 802.11-2020
- (wifi) #696 - 802.11ax assert failed. cond="seqNumber < SEQNO_SPACE_SIZE && startingSeqNumber < SEQNO_SPACE_SIZE"
- (wifi) Fix acknowledgment in SU format for DL MU PPDUs including PSDUs of different TIDs
- (wifi) Fix the TID of QoS Null frames in response to BSRP TF
Release 3.36.1
--------------

View File

@@ -1394,7 +1394,7 @@ HeFrameExchangeManager::SendQosNullFramesInTbPpdu (const CtrlTriggerHeader& trig
if (!m_mac->GetQosTxop (tid)->GetBaAgreementEstablished (hdr.GetAddr2 (), tid))
{
NS_LOG_DEBUG ("Skipping tid=" << +tid << " because no agreement established");
++tid;
header.SetQosTid (++tid);
continue;
}