Bug 841 - Multicast transmission breaks with QoS Wifi
This commit is contained in:
@@ -362,7 +362,7 @@ EdcaTxopN::NotifyAccessGranted (void)
|
||||
}
|
||||
MacLowTransmissionParameters params;
|
||||
params.DisableOverrideDurationId ();
|
||||
if (m_currentHdr.GetAddr1 ().IsBroadcast ())
|
||||
if (m_currentHdr.GetAddr1 ().IsGroup ())
|
||||
{
|
||||
params.DisableRts ();
|
||||
params.DisableAck ();
|
||||
|
||||
@@ -569,7 +569,7 @@ QstaWifiMac::Receive (Ptr<Packet> packet, const WifiMacHeader *hdr)
|
||||
NS_LOG_FUNCTION (this);
|
||||
NS_ASSERT (!hdr->IsCtl ());
|
||||
if (hdr->GetAddr1 () != GetAddress () &&
|
||||
!hdr->GetAddr1 ().IsBroadcast ())
|
||||
!hdr->GetAddr1 ().IsGroup ())
|
||||
{
|
||||
NS_LOG_LOGIC ("packet is not for us");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user