src/devices/wifi/nqap-wifi-mac.cc
changeset 4264 9d2e96c4e6e4
parent 4263 fec2f830d015
child 4272 b40ce56e0247
--- a/src/devices/wifi/nqap-wifi-mac.cc	Sat Feb 28 16:25:24 2009 -0800
+++ b/src/devices/wifi/nqap-wifi-mac.cc	Tue Mar 10 23:47:55 2009 -0700
@@ -286,7 +286,7 @@
 NqapWifiMac::ForwardUp (Ptr<Packet> packet, Mac48Address from, Mac48Address to)
 {
   NS_LOG_FUNCTION (this << packet << from);
-  m_macRxTrace (packet);
+  NotifyRx (packet);
   m_upCallback (packet, from, to);
 }
 
@@ -302,7 +302,7 @@
   hdr.SetDsFrom ();
   hdr.SetDsNotTo ();
 
-  m_macTxTrace (packet);
+  NotifyTx (packet);
   m_dca->Queue (packet, hdr);  
 }
 void 
@@ -477,13 +477,13 @@
         {
           // this is an AP-to-AP frame
           // we ignore for now.
-          m_macRxDropTrace (packet);
+          NotifyRxDrop (packet);
         } 
       else 
         {
           // we can ignore these frames since 
           // they are not targeted at the AP
-          m_macRxDropTrace (packet);
+          NotifyRxDrop (packet);
         }
     } 
   else if (hdr->IsMgt ())