|
A Discrete-Event Network Simulator
|
API
|
Go to the documentation of this file.
23 #include "ns3/wifi-tx-vector.h"
25 #define Min(a,b) ((a < b) ? a : b)
55 .SetGroupName (
"Wifi")
57 .AddAttribute (
"TimerThreshold",
"The 'timer' threshold in the ARF algorithm.",
60 MakeUintegerChecker<uint32_t> ())
61 .AddAttribute (
"SuccessThreshold",
62 "The minimum number of successful transmissions to try a new rate.",
65 MakeUintegerChecker<uint32_t> ())
66 .AddTraceSource (
"Rate",
67 "Traced value for rate changes (b/s)",
69 "ns3::TracedValueCallback::Uint64")
92 NS_FATAL_ERROR (
"WifiRemoteStationManager selected does not support HT rates");
96 NS_FATAL_ERROR (
"WifiRemoteStationManager selected does not support VHT rates");
100 NS_FATAL_ERROR (
"WifiRemoteStationManager selected does not support HE rates");
163 if (((station->
m_failed - 1) % 2) == 1)
186 double ctsSnr,
WifiMode ctsMode,
double rtsSnr)
193 double dataSnr, uint16_t dataChannelWidth, uint8_t dataNss)
195 NS_LOG_FUNCTION (
this << st << ackSnr << ackMode << dataSnr << dataChannelWidth << +dataNss);
232 if (channelWidth > 20 && channelWidth != 22)
253 if (channelWidth > 20 && channelWidth != 22)
a unique identifier for an interface.
uint8_t GetDefaultTxPowerLevel(void) const
uint32_t m_timerThreshold
timer threshold
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
void DoReportDataFailed(WifiRemoteStation *station) override
It is important to realize that "recovery" mode starts after failure of the first transmission after ...
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
bool GetUseNonErpProtection(void) const
Return whether the device supports protection of non-ERP stations.
uint32_t m_success
success count
ARF Rate control algorithm.
uint32_t m_timerTimeout
timer timeout
Every class exported by the ns3 library is enclosed in the ns3 namespace.
uint32_t m_successThreshold
success threshold
WifiMode GetSupported(const WifiRemoteStation *station, uint8_t i) const
Return whether mode associated with the specified station at the specified index.
WifiTxVector DoGetDataTxVector(WifiRemoteStation *station) override
WifiModulationClass GetModulationClass() const
hold a list of per-remote-station state.
bool GetHtSupported(void) const
Return whether the device has HT capability support enabled.
void DoReportRtsFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
bool GetVhtSupported(void) const
Return whether the device has VHT capability support enabled.
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
hold per-remote-station state for ARF Wifi manager.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
bool GetShortPreambleEnabled(void) const
Return whether the device uses short PHY preambles.
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
Create a TraceSourceAccessor which will control access to the underlying trace source.
void DoInitialize(void) override
Initialize() implementation.
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
WifiRemoteStation * DoCreateStation(void) const override
uint32_t m_failed
failed count
represent a single transmission mode
uint32_t m_timer
timer value
WifiPreamble GetPreambleForTransmission(WifiModulationClass modulation, bool useShortPreamble)
Return the preamble to be used for the transmission.
void DoReportDataOk(WifiRemoteStation *station, double ackSnr, WifiMode ackMode, double dataSnr, uint16_t dataChannelWidth, uint8_t dataNss) override
This method is a pure virtual method that must be implemented by the sub-class.
hold per-remote-station state.
bool GetAggregation(const WifiRemoteStation *station) const
Return whether the given station supports A-MPDU.
void DoReportFinalRtsFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
void DoReportFinalDataFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
WifiRemoteStationState * m_state
Remote station state.
WifiMode GetNonErpSupported(const WifiRemoteStation *station, uint8_t i) const
Return whether non-ERP mode associated with the specified station at the specified index.
virtual ~ArfWifiManager()
void DoReportRtsOk(WifiRemoteStation *station, double ctsSnr, WifiMode ctsMode, double rtsSnr) override
This method is a pure virtual method that must be implemented by the sub-class.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
static TypeId GetTypeId(void)
Get the type ID.
uint32_t m_successThreshold
success threshold
Hold an unsigned integer type.
WifiModeList m_operationalRateSet
This member is the list of WifiMode objects that comprise the OperationalRateSet parameter for this r...
uint16_t GetChannelWidth(const WifiRemoteStation *station) const
Return the channel width supported by the station.
uint64_t GetDataRate(uint16_t channelWidth, uint16_t guardInterval, uint8_t nss) const
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
WifiTxVector DoGetRtsTxVector(WifiRemoteStation *station) override
bool GetHeSupported(void) const
Return whether the device has HE capability support enabled.
TracedValue< uint64_t > m_currentRate
Trace rate changes.
void DoReportRxOk(WifiRemoteStation *station, double rxSnr, WifiMode txMode) override
This method is a pure virtual method that must be implemented by the sub-class.