from and to addresses were inverted

This commit is contained in:
Mathieu Lacage
2008-09-02 16:31:41 -07:00
parent 1a78f415ce
commit c063465ce6

View File

@@ -294,7 +294,7 @@ void
NqapWifiMac::Enqueue (Ptr<const Packet> 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