src/devices/wifi/mac-rx-middle.cc
changeset 4079 210d64d11998
parent 3923 f38616f83c3b
child 4602 36adfa546b04
--- a/src/devices/wifi/mac-rx-middle.cc	Sun Jan 11 23:26:34 2009 +0000
+++ b/src/devices/wifi/mac-rx-middle.cc	Mon Jan 12 13:35:41 2009 +0100
@@ -157,7 +157,7 @@
   OriginatorRxStatus *originator;
   Mac48Address source = hdr->GetAddr2 ();
   if (hdr->IsQosData () &&
-      !hdr->GetAddr2 ().IsBroadcast ()) 
+      !hdr->GetAddr2 ().IsGroup ()) 
     {
       /* only for qos data non-broadcast frames */
       originator = m_qosOriginatorStatus[std::make_pair(source, hdr->GetQosTid ())];
@@ -293,7 +293,7 @@
   NS_LOG_DEBUG ("forwarding data from="<<hdr->GetAddr2 ()<<
                 ", seq="<<hdr->GetSequenceNumber ()<<
                 ", frag="<<hdr->GetFragmentNumber ());
-  if (!hdr->GetAddr1 ().IsBroadcast ())
+  if (!hdr->GetAddr1 ().IsGroup ())
     {
       originator->SetSequenceControl (hdr->GetSequenceControl ());
     }