wifi: (fixes #475) Ask the correct EDCAF to prepare a BAR following a DL MU PPDU

This commit is contained in:
Stefano Avallone
2021-10-26 19:06:53 +02:00
parent 539218e593
commit 70adab8d72
2 changed files with 2 additions and 1 deletions

View File

@@ -31,6 +31,7 @@ Bugs fixed
----------
- (wifi) #467 - WiFi: Failed association process
- (wifi) #468 - WiFi: Wrong txDuration for trigger frame
- (wifi) #475 - Wi-Fi: Assert when sending OFDMA DL to STAs with different TIDs
Release 3.35
============

View File

@@ -289,7 +289,7 @@ HeFrameExchangeManager::SendPsduMap (void)
uint8_t tid = *tids.begin ();
NS_ASSERT (m_edca != 0);
m_edca->ScheduleBar (m_edca->PrepareBlockAckRequest (psdu.second->GetAddr1 (), tid));
m_edca->ScheduleBar (m_mac->GetQosTxop (tid)->PrepareBlockAckRequest (psdu.second->GetAddr1 (), tid));
}
}