From 1e8079187f86e1f803928f2a1476df563aaa40ff Mon Sep 17 00:00:00 2001 From: Kirill Andreev Date: Thu, 4 Jun 2009 16:42:37 +0400 Subject: [PATCH] Fixed setting slot and sifs time to mac-low --- src/devices/mesh/mesh-wifi-interface-mac.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/devices/mesh/mesh-wifi-interface-mac.cc b/src/devices/mesh/mesh-wifi-interface-mac.cc index 6c6c5ab29..cdd2073c4 100644 --- a/src/devices/mesh/mesh-wifi-interface-mac.cc +++ b/src/devices/mesh/mesh-wifi-interface-mac.cc @@ -108,6 +108,7 @@ MeshWifiInterfaceMac::SetSlot (Time slotTime) { NS_LOG_FUNCTION (this << slotTime); m_dcfManager->SetSlot (slotTime); + m_low->SetSlotTime (slotTime); m_slot = slotTime; } @@ -116,6 +117,7 @@ MeshWifiInterfaceMac::SetSifs (Time sifs) { NS_LOG_FUNCTION (this << sifs); m_dcfManager->SetSifs (sifs); + m_low->SetSifs (sifs); m_sifs = sifs; } void