Bug 841 - Multicast transmission breaks with QoS Wifi

This commit is contained in:
Bruno Ranieri
2010-04-17 12:02:53 +02:00
parent 845b931222
commit eb4b0b7e83
2 changed files with 2 additions and 2 deletions

View File

@@ -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 ();

View File

@@ -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");
}