diff --git a/src/wifi/model/ht/ht-frame-exchange-manager.cc b/src/wifi/model/ht/ht-frame-exchange-manager.cc index ac94638a1..5ed96d759 100644 --- a/src/wifi/model/ht/ht-frame-exchange-manager.cc +++ b/src/wifi/model/ht/ht-frame-exchange-manager.cc @@ -1838,6 +1838,12 @@ HtFrameExchangeManager::ReceiveMpdu(Ptr mpdu, ReceiveMgtAction(mpdu, txVector); } + if (IsGroupcast(hdr.GetAddr1()) && hdr.IsQosData() && hdr.IsQosAmsdu() && + !m_mac->GetRobustAVStreamingSupported()) + { + return; + } + QosFrameExchangeManager::ReceiveMpdu(mpdu, rxSignalInfo, txVector, inAmpdu); }