an implementation of the rate control algorithm developed by Atsushi Onoe More...
#include <onoe-wifi-manager.h>
Public Member Functions | |
OnoeWifiManager () | |
![]() | |
WifiRemoteStationManager () | |
virtual | ~WifiRemoteStationManager () |
void | AddBasicMode (WifiMode mode) |
void | AddSupportedMode (Mac48Address address, WifiMode mode) |
WifiMode | GetAckMode (Mac48Address address, WifiMode dataMode) |
WifiMode | GetBasicMode (uint32_t i) const |
WifiMode | GetCtsMode (Mac48Address address, WifiMode rtsMode) |
WifiMode | GetDataMode (Mac48Address address, const WifiMacHeader *header, Ptr< const Packet > packet, uint32_t fullPacketSize) |
WifiMode | GetDefaultMode (void) const |
uint32_t | GetFragmentationThreshold (void) const |
uint32_t | GetFragmentOffset (Mac48Address address, const WifiMacHeader *header, Ptr< const Packet > packet, uint32_t fragmentNumber) |
uint32_t | GetFragmentSize (Mac48Address address, const WifiMacHeader *header, Ptr< const Packet > packet, uint32_t fragmentNumber) |
WifiRemoteStationInfo | GetInfo (Mac48Address address) |
uint32_t | GetMaxSlrc (void) const |
uint32_t | GetMaxSsrc (void) const |
uint32_t | GetNBasicModes (void) const |
WifiMode | GetNonUnicastMode (void) const |
uint32_t | GetRtsCtsThreshold (void) const |
WifiMode | GetRtsMode (Mac48Address address, const WifiMacHeader *header, Ptr< const Packet > packet) |
bool | IsAssociated (Mac48Address address) const |
bool | IsBrandNew (Mac48Address address) const |
bool | IsLastFragment (Mac48Address address, const WifiMacHeader *header, Ptr< const Packet > packet, uint32_t fragmentNumber) |
bool | IsWaitAssocTxOk (Mac48Address address) const |
bool | NeedDataRetransmission (Mac48Address address, const WifiMacHeader *header, Ptr< const Packet > packet) |
bool | NeedFragmentation (Mac48Address address, const WifiMacHeader *header, Ptr< const Packet > packet) |
bool | NeedRts (Mac48Address address, const WifiMacHeader *header, Ptr< const Packet > packet) |
bool | NeedRtsRetransmission (Mac48Address address, const WifiMacHeader *header, Ptr< const Packet > packet) |
void | PrepareForQueue (Mac48Address address, const WifiMacHeader *header, Ptr< const Packet > packet, uint32_t fullPacketSize) |
void | RecordDisassociated (Mac48Address address) |
void | RecordGotAssocTxFailed (Mac48Address address) |
void | RecordGotAssocTxOk (Mac48Address address) |
void | RecordWaitAssocTxOk (Mac48Address address) |
void | ReportDataFailed (Mac48Address address, const WifiMacHeader *header) |
void | ReportDataOk (Mac48Address address, const WifiMacHeader *header, double ackSnr, WifiMode ackMode, double dataSnr) |
void | ReportFinalDataFailed (Mac48Address address, const WifiMacHeader *header) |
void | ReportFinalRtsFailed (Mac48Address address, const WifiMacHeader *header) |
void | ReportRtsFailed (Mac48Address address, const WifiMacHeader *header) |
void | ReportRtsOk (Mac48Address address, const WifiMacHeader *header, double ctsSnr, WifiMode ctsMode, double rtsSnr) |
void | ReportRxOk (Mac48Address address, const WifiMacHeader *header, double rxSnr, WifiMode txMode) |
void | Reset (void) |
void | Reset (Mac48Address address) |
void | SetFragmentationThreshold (uint32_t threshold) |
void | SetMaxSlrc (uint32_t maxSlrc) |
void | SetMaxSsrc (uint32_t maxSsrc) |
void | SetRtsCtsThreshold (uint32_t threshold) |
virtual void | SetupPhy (Ptr< WifiPhy > phy) |
![]() | |
Object () | |
virtual | ~Object () |
void | AggregateObject (Ptr< Object > other) |
void | Dispose (void) |
AggregateIterator | GetAggregateIterator (void) const |
virtual TypeId | GetInstanceTypeId (void) const |
template<typename T > | |
Ptr< T > | GetObject (void) const |
template<typename T > | |
Ptr< T > | GetObject (TypeId tid) const |
void | Start (void) |
![]() | |
SimpleRefCount () | |
SimpleRefCount (const SimpleRefCount &o) | |
uint32_t | GetReferenceCount (void) const |
SimpleRefCount & | operator= (const SimpleRefCount &o) |
void | Ref (void) const |
void | Unref (void) const |
![]() | |
virtual | ~ObjectBase () |
void | GetAttribute (std::string name, AttributeValue &value) const |
bool | GetAttributeFailSafe (std::string name, AttributeValue &attribute) const |
void | SetAttribute (std::string name, const AttributeValue &value) |
bool | SetAttributeFailSafe (std::string name, const AttributeValue &value) |
bool | TraceConnect (std::string name, std::string context, const CallbackBase &cb) |
bool | TraceConnectWithoutContext (std::string name, const CallbackBase &cb) |
bool | TraceDisconnect (std::string name, std::string context, const CallbackBase &cb) |
bool | TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb) |
Static Public Member Functions | |
static TypeId | GetTypeId (void) |
This method returns the TypeId associated to ns3::OnoeWifiManager. |
Private Member Functions | |
virtual WifiRemoteStation * | DoCreateStation (void) const |
virtual WifiMode | DoGetDataMode (WifiRemoteStation *station, uint32_t size) |
virtual WifiMode | DoGetRtsMode (WifiRemoteStation *station) |
virtual void | DoReportDataFailed (WifiRemoteStation *station) |
virtual void | DoReportDataOk (WifiRemoteStation *station, double ackSnr, WifiMode ackMode, double dataSnr) |
virtual void | DoReportFinalDataFailed (WifiRemoteStation *station) |
virtual void | DoReportFinalRtsFailed (WifiRemoteStation *station) |
virtual void | DoReportRtsFailed (WifiRemoteStation *station) |
virtual void | DoReportRtsOk (WifiRemoteStation *station, double ctsSnr, WifiMode ctsMode, double rtsSnr) |
virtual void | DoReportRxOk (WifiRemoteStation *station, double rxSnr, WifiMode txMode) |
virtual bool | IsLowLatency (void) const |
void | UpdateMode (OnoeWifiRemoteStation *station) |
void | UpdateRetry (OnoeWifiRemoteStation *station) |
Private Attributes | |
uint32_t | m_addCreditThreshold |
uint32_t | m_raiseThreshold |
Time | m_updatePeriod |
Additional Inherited Members | |
![]() | |
virtual void | DoDispose (void) |
uint32_t | GetNSupported (const WifiRemoteStation *station) const |
WifiMode | GetSupported (const WifiRemoteStation *station, uint32_t i) const |
an implementation of the rate control algorithm developed by Atsushi Onoe
This algorithm is well known because it has been used as the default rate control algorithm for the madwifi driver. I am not aware of any publication or reference about this algorithm beyond the madwifi source code.
Definition at line 41 of file onoe-wifi-manager.h.
ns3::OnoeWifiManager::OnoeWifiManager | ( | ) |
Definition at line 68 of file onoe-wifi-manager.cc.
|
privatevirtual |
Definition at line 72 of file onoe-wifi-manager.cc.
References ns3::OnoeWifiRemoteStation::m_longRetry, ns3::OnoeWifiRemoteStation::m_nextModeUpdate, ns3::OnoeWifiRemoteStation::m_shortRetry, ns3::OnoeWifiRemoteStation::m_tx_err, ns3::OnoeWifiRemoteStation::m_tx_ok, ns3::OnoeWifiRemoteStation::m_tx_retr, ns3::OnoeWifiRemoteStation::m_tx_upper, ns3::OnoeWifiRemoteStation::m_txrate, m_updatePeriod, and ns3::Now().
|
privatevirtual |
Definition at line 219 of file onoe-wifi-manager.cc.
References ns3::WifiRemoteStationManager::GetNSupported(), ns3::WifiRemoteStationManager::GetSupported(), ns3::OnoeWifiRemoteStation::m_longRetry, ns3::OnoeWifiRemoteStation::m_txrate, NS_ASSERT, and UpdateMode().
|
privatevirtual |
Definition at line 266 of file onoe-wifi-manager.cc.
References ns3::WifiRemoteStationManager::GetSupported(), and UpdateMode().
|
privatevirtual |
Definition at line 97 of file onoe-wifi-manager.cc.
References ns3::OnoeWifiRemoteStation::m_longRetry.
|
privatevirtual |
Definition at line 108 of file onoe-wifi-manager.cc.
References ns3::OnoeWifiRemoteStation::m_tx_ok, and UpdateRetry().
|
privatevirtual |
Definition at line 123 of file onoe-wifi-manager.cc.
References ns3::OnoeWifiRemoteStation::m_tx_err, and UpdateRetry().
|
privatevirtual |
Definition at line 116 of file onoe-wifi-manager.cc.
References ns3::OnoeWifiRemoteStation::m_tx_err, and UpdateRetry().
|
privatevirtual |
Definition at line 91 of file onoe-wifi-manager.cc.
References ns3::OnoeWifiRemoteStation::m_shortRetry.
|
privatevirtual |
Definition at line 103 of file onoe-wifi-manager.cc.
|
privatevirtual |
Definition at line 86 of file onoe-wifi-manager.cc.
|
static |
This method returns the TypeId associated to ns3::OnoeWifiManager.
This object is accessible through the following paths with Config::Set and Config::Connect:
Attributes defined for this type:
Attributes defined in parent class ns3::WifiRemoteStationManager:
No TraceSources defined for this type.
TraceSources defined in parent class ns3::WifiRemoteStationManager:
Reimplemented from ns3::WifiRemoteStationManager.
Definition at line 46 of file onoe-wifi-manager.cc.
References m_addCreditThreshold, m_raiseThreshold, m_updatePeriod, ns3::Seconds(), and ns3::TypeId::SetParent().
|
privatevirtual |
Definition at line 275 of file onoe-wifi-manager.cc.
|
private |
The following 20 lines of code were copied from the Onoe rate control kernel module used in the madwifi driver.
Definition at line 137 of file onoe-wifi-manager.cc.
References ns3::WifiRemoteStationManager::GetNSupported(), m_addCreditThreshold, ns3::OnoeWifiRemoteStation::m_nextModeUpdate, m_raiseThreshold, ns3::OnoeWifiRemoteStation::m_tx_err, ns3::OnoeWifiRemoteStation::m_tx_ok, ns3::OnoeWifiRemoteStation::m_tx_retr, ns3::OnoeWifiRemoteStation::m_tx_upper, ns3::OnoeWifiRemoteStation::m_txrate, m_updatePeriod, ns3::Now(), ns3::Simulator::Now(), NS_ASSERT, and NS_LOG_DEBUG.
Referenced by DoGetDataMode(), and DoGetRtsMode().
|
private |
Definition at line 130 of file onoe-wifi-manager.cc.
References ns3::OnoeWifiRemoteStation::m_longRetry, ns3::OnoeWifiRemoteStation::m_shortRetry, and ns3::OnoeWifiRemoteStation::m_tx_retr.
Referenced by DoReportDataOk(), DoReportFinalDataFailed(), and DoReportFinalRtsFailed().
|
private |
Definition at line 69 of file onoe-wifi-manager.h.
Referenced by GetTypeId(), and UpdateMode().
|
private |
Definition at line 70 of file onoe-wifi-manager.h.
Referenced by GetTypeId(), and UpdateMode().
|
private |
Definition at line 68 of file onoe-wifi-manager.h.
Referenced by DoCreateStation(), GetTypeId(), and UpdateMode().