From c063465ce6fbb6e99f0ba59395ed8b674b28038b Mon Sep 17 00:00:00 2001 From: Mathieu Lacage Date: Tue, 2 Sep 2008 16:31:41 -0700 Subject: [PATCH] from and to addresses were inverted --- src/devices/wifi/nqap-wifi-mac.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/wifi/nqap-wifi-mac.cc b/src/devices/wifi/nqap-wifi-mac.cc index 953013f41..69405a971 100644 --- a/src/devices/wifi/nqap-wifi-mac.cc +++ b/src/devices/wifi/nqap-wifi-mac.cc @@ -294,7 +294,7 @@ void NqapWifiMac::Enqueue (Ptr packet, Mac48Address to) { NS_LOG_FUNCTION (this << packet << to); - ForwardDown (packet, to, m_low->GetAddress ()); + ForwardDown (packet, m_low->GetAddress (), to); } bool NqapWifiMac::SupportsSendFrom (void) const