diff --git a/src/wifi/model/channel-access-manager.cc b/src/wifi/model/channel-access-manager.cc index bb2798e33..9a2295439 100644 --- a/src/wifi/model/channel-access-manager.cc +++ b/src/wifi/model/channel-access-manager.cc @@ -199,7 +199,6 @@ ChannelAccessManager::ChannelAccessManager() m_lastRxReceivedOk(true), m_lastTxEnd(0), m_lastSwitchingEnd(0), - m_usingOtherEmlsrLink(false), m_sleeping(false), m_off(false), m_linkId(0) @@ -1132,20 +1131,6 @@ ChannelAccessManager::NotifyCtsTimeoutResetNow() DoRestartAccessTimeoutIfNeeded(); } -void -ChannelAccessManager::NotifyStartUsingOtherEmlsrLink() -{ - NS_LOG_FUNCTION(this); - m_usingOtherEmlsrLink = true; -} - -void -ChannelAccessManager::NotifyStopUsingOtherEmlsrLink() -{ - NS_LOG_FUNCTION(this); - m_usingOtherEmlsrLink = false; -} - void ChannelAccessManager::UpdateLastIdlePeriod() { diff --git a/src/wifi/model/channel-access-manager.h b/src/wifi/model/channel-access-manager.h index 3299e3de1..7d830c9b6 100644 --- a/src/wifi/model/channel-access-manager.h +++ b/src/wifi/model/channel-access-manager.h @@ -320,15 +320,6 @@ class ChannelAccessManager : public Object */ void NotifyCtsTimeoutResetNow(); - /** - * Notify that another EMLSR link is being used, hence medium access should be disabled. - */ - void NotifyStartUsingOtherEmlsrLink(); - /** - * Notify that another EMLSR link is no longer being used, hence medium access can be resumed. - */ - void NotifyStopUsingOtherEmlsrLink(); - /** * Check if the device is busy sending or receiving, * or NAV or CCA busy. @@ -486,7 +477,6 @@ class ChannelAccessManager : public Object std::map m_lastIdle; //!< the last idle start and end time for each channel type Time m_lastSwitchingEnd; //!< the last switching end time - bool m_usingOtherEmlsrLink; //!< whether another EMLSR link is being used bool m_sleeping; //!< flag whether it is in sleeping state bool m_off; //!< flag whether it is in off state Time m_eifsNoDifs; //!< EIFS no DIFS time