wifi: Restart access on all links when receiving ADDBA_RESPONSE

This commit is contained in:
Stefano Avallone
2022-10-19 11:03:15 +02:00
committed by Stefano Avallone
parent ec40e2ad81
commit 7b5cb3b3e4

View File

@@ -656,10 +656,9 @@ QosTxop::GotAddBaResponse(const MgtAddBaResponseHeader* respHdr, Mac48Address re
m_baManager->NotifyAgreementRejected(recipient, tid);
}
if (HasFramesToTransmit(SINGLE_LINK_OP_ID) &&
GetLink(SINGLE_LINK_OP_ID).access == NOT_REQUESTED)
for (uint8_t linkId = 0; linkId < GetNLinks(); linkId++)
{
m_mac->GetChannelAccessManager(SINGLE_LINK_OP_ID)->RequestAccess(this);
StartAccessIfNeeded(linkId);
}
}