A Discrete-Event Network Simulator
API
amrr-wifi-manager.cc
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2003,2007 INRIA
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
19  */
20 
21 #include "ns3/log.h"
22 #include "ns3/simulator.h"
23 #include "amrr-wifi-manager.h"
24 #include "ns3/wifi-tx-vector.h"
25 
26 #define Min(a,b) ((a < b) ? a : b)
27 
28 namespace ns3 {
29 
30 NS_LOG_COMPONENT_DEFINE ("AmrrWifiManager");
31 
39 {
41  uint32_t m_tx_ok;
42  uint32_t m_tx_err;
43  uint32_t m_tx_retr;
44  uint32_t m_retry;
45  uint8_t m_txrate;
46  uint32_t m_successThreshold;
47  uint32_t m_success;
48  bool m_recovery;
49 };
50 
51 
53 
54 TypeId
56 {
57  static TypeId tid = TypeId ("ns3::AmrrWifiManager")
59  .SetGroupName ("Wifi")
60  .AddConstructor<AmrrWifiManager> ()
61  .AddAttribute ("UpdatePeriod",
62  "The interval between decisions about rate control changes",
63  TimeValue (Seconds (1.0)),
65  MakeTimeChecker ())
66  .AddAttribute ("FailureRatio",
67  "Ratio of minimum erroneous transmissions needed to switch to a lower rate",
68  DoubleValue (1.0 / 3.0),
70  MakeDoubleChecker<double> (0.0, 1.0))
71  .AddAttribute ("SuccessRatio",
72  "Ratio of maximum erroneous transmissions needed to switch to a higher rate",
73  DoubleValue (1.0 / 10.0),
75  MakeDoubleChecker<double> (0.0, 1.0))
76  .AddAttribute ("MaxSuccessThreshold",
77  "Maximum number of consecutive success periods needed to switch to a higher rate",
78  UintegerValue (10),
80  MakeUintegerChecker<uint32_t> ())
81  .AddAttribute ("MinSuccessThreshold",
82  "Minimum number of consecutive success periods needed to switch to a higher rate",
83  UintegerValue (1),
85  MakeUintegerChecker<uint32_t> ())
86  .AddTraceSource ("Rate",
87  "Traced value for rate changes (b/s)",
89  "ns3::TracedValueCallback::Uint64")
90  ;
91  return tid;
92 }
93 
96  m_currentRate (0)
97 {
98  NS_LOG_FUNCTION (this);
99 }
100 
102 {
103  NS_LOG_FUNCTION (this);
104 }
105 
106 void
108 {
109  NS_LOG_FUNCTION (this);
110  if (GetHtSupported ())
111  {
112  NS_FATAL_ERROR ("WifiRemoteStationManager selected does not support HT rates");
113  }
114  if (GetVhtSupported ())
115  {
116  NS_FATAL_ERROR ("WifiRemoteStationManager selected does not support VHT rates");
117  }
118  if (GetHeSupported ())
119  {
120  NS_FATAL_ERROR ("WifiRemoteStationManager selected does not support HE rates");
121  }
122 }
123 
126 {
127  NS_LOG_FUNCTION (this);
130  station->m_tx_ok = 0;
131  station->m_tx_err = 0;
132  station->m_tx_retr = 0;
133  station->m_retry = 0;
134  station->m_txrate = 0;
136  station->m_success = 0;
137  station->m_recovery = false;
138  return station;
139 }
140 
141 void
143  double rxSnr, WifiMode txMode)
144 {
145  NS_LOG_FUNCTION (this << station << rxSnr << txMode);
146 }
147 
148 void
150 {
151  NS_LOG_FUNCTION (this << station);
152 }
153 
154 void
156 {
157  NS_LOG_FUNCTION (this << st);
158  AmrrWifiRemoteStation *station = static_cast<AmrrWifiRemoteStation*> (st);
159  station->m_retry++;
160  station->m_tx_retr++;
161 }
162 
163 void
165  double ctsSnr, WifiMode ctsMode, double rtsSnr)
166 {
167  NS_LOG_FUNCTION (this << st << ctsSnr << ctsMode << rtsSnr);
168 }
169 
170 void
172  double dataSnr, uint16_t dataChannelWidth, uint8_t dataNss)
173 {
174  NS_LOG_FUNCTION (this << st << ackSnr << ackMode << dataSnr << dataChannelWidth << +dataNss);
175  AmrrWifiRemoteStation *station = static_cast<AmrrWifiRemoteStation*> (st);
176  station->m_retry = 0;
177  station->m_tx_ok++;
178 }
179 
180 void
182 {
183  NS_LOG_FUNCTION (this << station);
184 }
185 
186 void
188 {
189  NS_LOG_FUNCTION (this << st);
190  AmrrWifiRemoteStation *station = static_cast<AmrrWifiRemoteStation*> (st);
191  station->m_retry = 0;
192  station->m_tx_err++;
193 }
194 
195 bool
197 {
198  NS_LOG_FUNCTION (this << station);
199  return (station->m_txrate == 0);
200 }
201 
202 bool
204 {
205  NS_LOG_FUNCTION (this << station);
206  NS_ASSERT (station->m_txrate + 1 <= GetNSupported (station));
207  return (station->m_txrate + 1 == GetNSupported (station));
208 }
209 
210 bool
212 {
213  NS_LOG_FUNCTION (this << station);
214  return (station->m_tx_retr + station->m_tx_err) < station->m_tx_ok * m_successRatio;
215 }
216 
217 bool
219 {
220  NS_LOG_FUNCTION (this << station);
221  return (station->m_tx_retr + station->m_tx_err) > station->m_tx_ok * m_failureRatio;
222 }
223 
224 bool
226 {
227  NS_LOG_FUNCTION (this << station);
228  return (station->m_tx_retr + station->m_tx_err + station->m_tx_ok) > 10;
229 }
230 
231 void
233 {
234  NS_LOG_FUNCTION (this << station);
235  station->m_tx_ok = 0;
236  station->m_tx_err = 0;
237  station->m_tx_retr = 0;
238 }
239 
240 void
242 {
243  NS_LOG_FUNCTION (this << station);
244  station->m_txrate++;
245  NS_ASSERT (station->m_txrate < GetNSupported (station));
246 }
247 
248 void
250 {
251  NS_LOG_FUNCTION (this << station);
252  station->m_txrate--;
253 }
254 
255 void
257 {
258  NS_LOG_FUNCTION (this << station);
259  if (Simulator::Now () < station->m_nextModeUpdate)
260  {
261  return;
262  }
264  NS_LOG_DEBUG ("Update");
265 
266  bool needChange = false;
267 
268  if (IsSuccess (station) && IsEnough (station))
269  {
270  station->m_success++;
271  NS_LOG_DEBUG ("++ success=" << station->m_success << " successThreshold=" << station->m_successThreshold <<
272  " tx_ok=" << station->m_tx_ok << " tx_err=" << station->m_tx_err << " tx_retr=" << station->m_tx_retr <<
273  " rate=" << +station->m_txrate << " n-supported-rates=" << +GetNSupported (station));
274  if (station->m_success >= station->m_successThreshold
275  && !IsMaxRate (station))
276  {
277  station->m_recovery = true;
278  station->m_success = 0;
279  IncreaseRate (station);
280  needChange = true;
281  }
282  else
283  {
284  station->m_recovery = false;
285  }
286  }
287  else if (IsFailure (station))
288  {
289  station->m_success = 0;
290  NS_LOG_DEBUG ("-- success=" << station->m_success << " successThreshold=" << station->m_successThreshold <<
291  " tx_ok=" << station->m_tx_ok << " tx_err=" << station->m_tx_err << " tx_retr=" << station->m_tx_retr <<
292  " rate=" << +station->m_txrate << " n-supported-rates=" << +GetNSupported (station));
293  if (!IsMinRate (station))
294  {
295  if (station->m_recovery)
296  {
297  station->m_successThreshold *= 2;
298  station->m_successThreshold = std::min (station->m_successThreshold,
300  }
301  else
302  {
304  }
305  station->m_recovery = false;
306  DecreaseRate (station);
307  needChange = true;
308  }
309  else
310  {
311  station->m_recovery = false;
312  }
313  }
314  if (IsEnough (station) || needChange)
315  {
316  NS_LOG_DEBUG ("Reset");
317  ResetCnt (station);
318  }
319 }
320 
323 {
324  NS_LOG_FUNCTION (this << st);
325  AmrrWifiRemoteStation *station = static_cast<AmrrWifiRemoteStation*> (st);
326  UpdateMode (station);
327  NS_ASSERT (station->m_txrate < GetNSupported (station));
328  uint8_t rateIndex;
329  if (station->m_retry < 1)
330  {
331  rateIndex = station->m_txrate;
332  }
333  else if (station->m_retry < 2)
334  {
335  if (station->m_txrate > 0)
336  {
337  rateIndex = station->m_txrate - 1;
338  }
339  else
340  {
341  rateIndex = station->m_txrate;
342  }
343  }
344  else if (station->m_retry < 3)
345  {
346  if (station->m_txrate > 1)
347  {
348  rateIndex = station->m_txrate - 2;
349  }
350  else
351  {
352  rateIndex = station->m_txrate;
353  }
354  }
355  else
356  {
357  if (station->m_txrate > 2)
358  {
359  rateIndex = station->m_txrate - 3;
360  }
361  else
362  {
363  rateIndex = station->m_txrate;
364  }
365  }
366  uint16_t channelWidth = GetChannelWidth (station);
367  if (channelWidth > 20 && channelWidth != 22)
368  {
369  channelWidth = 20;
370  }
371  WifiMode mode = GetSupported (station, rateIndex);
372  if (m_currentRate != mode.GetDataRate (channelWidth))
373  {
374  NS_LOG_DEBUG ("New datarate: " << mode.GetDataRate (channelWidth));
375  m_currentRate = mode.GetDataRate (channelWidth);
376  }
377  return WifiTxVector (mode, GetDefaultTxPowerLevel (), GetPreambleForTransmission (mode.GetModulationClass (), GetShortPreambleEnabled ()), 800, 1, 1, 0, channelWidth, GetAggregation (station));
378 }
379 
382 {
383  NS_LOG_FUNCTION (this << st);
384  AmrrWifiRemoteStation *station = static_cast<AmrrWifiRemoteStation*> (st);
385  uint16_t channelWidth = GetChannelWidth (station);
386  if (channelWidth > 20 && channelWidth != 22)
387  {
388  channelWidth = 20;
389  }
390  UpdateMode (station);
391  WifiTxVector rtsTxVector;
392  WifiMode mode;
393  if (GetUseNonErpProtection () == false)
394  {
395  mode = GetSupported (station, 0);
396  }
397  else
398  {
399  mode = GetNonErpSupported (station, 0);
400  }
401  rtsTxVector = WifiTxVector (mode, GetDefaultTxPowerLevel (), GetPreambleForTransmission (mode.GetModulationClass (), GetShortPreambleEnabled ()), 800, 1, 1, 0, channelWidth, GetAggregation (station));
402  return rtsTxVector;
403 }
404 
405 } //namespace ns3
ns3::AmrrWifiManager::GetTypeId
static TypeId GetTypeId(void)
Get the type ID.
Definition: amrr-wifi-manager.cc:55
ns3::TypeId
a unique identifier for an interface.
Definition: type-id.h:59
ns3::WifiRemoteStationManager::GetDefaultTxPowerLevel
uint8_t GetDefaultTxPowerLevel(void) const
Definition: wifi-remote-station-manager.cc:1206
NS_LOG_COMPONENT_DEFINE
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:205
ns3::AmrrWifiRemoteStation::m_recovery
bool m_recovery
recovery
Definition: amrr-wifi-manager.cc:48
ns3::AmrrWifiRemoteStation::m_success
uint32_t m_success
success
Definition: amrr-wifi-manager.cc:47
NS_OBJECT_ENSURE_REGISTERED
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition: object-base.h:45
NS_ASSERT
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
Definition: assert.h:67
ns3::AmrrWifiManager::DoInitialize
void DoInitialize(void) override
Initialize() implementation.
Definition: amrr-wifi-manager.cc:107
ns3::MakeTimeChecker
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
Definition: time.cc:533
ns3::WifiRemoteStationManager::GetUseNonErpProtection
bool GetUseNonErpProtection(void) const
Return whether the device supports protection of non-ERP stations.
Definition: wifi-remote-station-manager.cc:1051
min
#define min(a, b)
Definition: 80211b.c:42
ns3::Simulator::Now
static Time Now(void)
Return the current simulation virtual time.
Definition: simulator.cc:195
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::AmrrWifiManager::DecreaseRate
void DecreaseRate(AmrrWifiRemoteStation *station)
Decrease the transmission rate to the given station.
Definition: amrr-wifi-manager.cc:249
ns3::WifiRemoteStationManager::GetSupported
WifiMode GetSupported(const WifiRemoteStation *station, uint8_t i) const
Return whether mode associated with the specified station at the specified index.
Definition: wifi-remote-station-manager.cc:1635
ns3::AmrrWifiManager::DoCreateStation
WifiRemoteStation * DoCreateStation(void) const override
Definition: amrr-wifi-manager.cc:125
ns3::AmrrWifiManager::AmrrWifiManager
AmrrWifiManager()
Definition: amrr-wifi-manager.cc:94
ns3::AmrrWifiManager::m_currentRate
TracedValue< uint64_t > m_currentRate
Trace rate changes.
Definition: amrr-wifi-manager.h:156
ns3::AmrrWifiManager::IncreaseRate
void IncreaseRate(AmrrWifiRemoteStation *station)
Increase the transmission rate to the given station.
Definition: amrr-wifi-manager.cc:241
ns3::WifiMode::GetModulationClass
WifiModulationClass GetModulationClass() const
Definition: wifi-mode.cc:159
ns3::AmrrWifiManager::IsEnough
bool IsEnough(AmrrWifiRemoteStation *station) const
Check if the number of retransmission, transmission error, and successful transmission are greater th...
Definition: amrr-wifi-manager.cc:225
ns3::WifiRemoteStationManager
hold a list of per-remote-station state.
Definition: wifi-remote-station-manager.h:121
ns3::WifiRemoteStationManager::GetHtSupported
bool GetHtSupported(void) const
Return whether the device has HT capability support enabled.
Definition: wifi-remote-station-manager.cc:232
ns3::WifiRemoteStationManager::GetVhtSupported
bool GetVhtSupported(void) const
Return whether the device has VHT capability support enabled.
Definition: wifi-remote-station-manager.cc:244
ns3::AmrrWifiRemoteStation::m_nextModeUpdate
Time m_nextModeUpdate
next mode update time
Definition: amrr-wifi-manager.cc:40
ns3::WifiRemoteStationManager::GetNSupported
uint8_t GetNSupported(const WifiRemoteStation *station) const
Return the number of modes supported by the given station.
Definition: wifi-remote-station-manager.cc:1743
ns3::WifiTxVector
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
Definition: wifi-tx-vector.h:71
ns3::AmrrWifiRemoteStation
hold per-remote-station state for AMRR Wifi manager.
Definition: amrr-wifi-manager.cc:39
ns3::AmrrWifiManager::IsSuccess
bool IsSuccess(AmrrWifiRemoteStation *station) const
Check if the number of retransmission and transmission error is less than the number of successful tr...
Definition: amrr-wifi-manager.cc:211
ns3::AmrrWifiManager::DoReportRxOk
void DoReportRxOk(WifiRemoteStation *station, double rxSnr, WifiMode txMode) override
This method is a pure virtual method that must be implemented by the sub-class.
Definition: amrr-wifi-manager.cc:142
ns3::TypeId::SetParent
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Definition: type-id.cc:923
ns3::DoubleValue
This class can be used to hold variables of floating point type such as 'double' or 'float'.
Definition: double.h:41
ns3::WifiRemoteStationManager::GetShortPreambleEnabled
bool GetShortPreambleEnabled(void) const
Return whether the device uses short PHY preambles.
Definition: wifi-remote-station-manager.cc:226
ns3::AmrrWifiManager
AMRR Rate control algorithm.
Definition: amrr-wifi-manager.h:45
ns3::AmrrWifiRemoteStation::m_tx_retr
uint32_t m_tx_retr
transmit retry
Definition: amrr-wifi-manager.cc:43
ns3::MakeTraceSourceAccessor
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
Create a TraceSourceAccessor which will control access to the underlying trace source.
Definition: trace-source-accessor.h:202
ns3::AmrrWifiManager::IsMaxRate
bool IsMaxRate(AmrrWifiRemoteStation *station) const
Check if the current rate for the given station is the maximum rate.
Definition: amrr-wifi-manager.cc:203
NS_FATAL_ERROR
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
Definition: fatal-error.h:165
ns3::AmrrWifiManager::DoGetDataTxVector
WifiTxVector DoGetDataTxVector(WifiRemoteStation *station) override
Definition: amrr-wifi-manager.cc:322
ns3::AmrrWifiManager::m_successRatio
double m_successRatio
success ratio
Definition: amrr-wifi-manager.h:152
ns3::WifiMode
represent a single transmission mode
Definition: wifi-mode.h:48
ns3::AmrrWifiManager::m_updatePeriod
Time m_updatePeriod
update period
Definition: amrr-wifi-manager.h:150
ns3::AmrrWifiManager::DoReportRtsFailed
void DoReportRtsFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
Definition: amrr-wifi-manager.cc:149
ns3::AmrrWifiManager::DoReportFinalRtsFailed
void DoReportFinalRtsFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
Definition: amrr-wifi-manager.cc:181
amrr-wifi-manager.h
ns3::AmrrWifiManager::m_maxSuccessThreshold
uint32_t m_maxSuccessThreshold
maximum success threshold
Definition: amrr-wifi-manager.h:153
ns3::Time
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:104
ns3::AmrrWifiManager::DoReportRtsOk
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.
Definition: amrr-wifi-manager.cc:164
ns3::AmrrWifiManager::IsFailure
bool IsFailure(AmrrWifiRemoteStation *station) const
Check if the number of retransmission and transmission error is greater than the number of successful...
Definition: amrr-wifi-manager.cc:218
ns3::AmrrWifiManager::DoReportDataOk
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.
Definition: amrr-wifi-manager.cc:171
ns3::AmrrWifiManager::IsMinRate
bool IsMinRate(AmrrWifiRemoteStation *station) const
Check if the current rate for the given station is the minimum rate.
Definition: amrr-wifi-manager.cc:196
ns3::AmrrWifiManager::ResetCnt
void ResetCnt(AmrrWifiRemoteStation *station)
Reset transmission statistics of the given station.
Definition: amrr-wifi-manager.cc:232
ns3::AmrrWifiManager::UpdateMode
void UpdateMode(AmrrWifiRemoteStation *station)
Update the mode used to send to the given station.
Definition: amrr-wifi-manager.cc:256
ns3::AmrrWifiRemoteStation::m_txrate
uint8_t m_txrate
transmit rate
Definition: amrr-wifi-manager.cc:45
ns3::AmrrWifiRemoteStation::m_tx_ok
uint32_t m_tx_ok
transmit OK
Definition: amrr-wifi-manager.cc:41
ns3::AmrrWifiManager::DoReportFinalDataFailed
void DoReportFinalDataFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
Definition: amrr-wifi-manager.cc:187
ns3::MakeDoubleAccessor
Ptr< const AttributeAccessor > MakeDoubleAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Definition: double.h:42
ns3::GetPreambleForTransmission
WifiPreamble GetPreambleForTransmission(WifiModulationClass modulation, bool useShortPreamble)
Return the preamble to be used for the transmission.
Definition: wifi-phy-common.cc:87
ns3::WifiRemoteStation
hold per-remote-station state.
Definition: wifi-remote-station-manager.h:62
ns3::WifiRemoteStationManager::GetAggregation
bool GetAggregation(const WifiRemoteStation *station) const
Return whether the given station supports A-MPDU.
Definition: wifi-remote-station-manager.cc:1707
NS_LOG_DEBUG
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
Definition: log.h:273
ns3::Seconds
Time Seconds(double value)
Construct a Time in the indicated unit.
Definition: nstime.h:1289
ns3::WifiRemoteStationManager::GetNonErpSupported
WifiMode GetNonErpSupported(const WifiRemoteStation *station, uint8_t i) const
Return whether non-ERP mode associated with the specified station at the specified index.
Definition: wifi-remote-station-manager.cc:1649
ns3::AmrrWifiManager::~AmrrWifiManager
virtual ~AmrrWifiManager()
Definition: amrr-wifi-manager.cc:101
ns3::AmrrWifiManager::m_minSuccessThreshold
uint32_t m_minSuccessThreshold
minimum success threshold
Definition: amrr-wifi-manager.h:154
ns3::AmrrWifiManager::DoReportDataFailed
void DoReportDataFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
Definition: amrr-wifi-manager.cc:155
ns3::TimeValue
AttributeValue implementation for Time.
Definition: nstime.h:1353
NS_LOG_FUNCTION
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
Definition: log-macros-enabled.h:244
ns3::AmrrWifiManager::DoGetRtsTxVector
WifiTxVector DoGetRtsTxVector(WifiRemoteStation *station) override
Definition: amrr-wifi-manager.cc:381
ns3::AmrrWifiRemoteStation::m_retry
uint32_t m_retry
retry
Definition: amrr-wifi-manager.cc:44
ns3::AmrrWifiRemoteStation::m_tx_err
uint32_t m_tx_err
transmit error
Definition: amrr-wifi-manager.cc:42
ns3::UintegerValue
Hold an unsigned integer type.
Definition: uinteger.h:44
ns3::AmrrWifiManager::m_failureRatio
double m_failureRatio
failure ratio
Definition: amrr-wifi-manager.h:151
ns3::WifiRemoteStationManager::GetChannelWidth
uint16_t GetChannelWidth(const WifiRemoteStation *station) const
Return the channel width supported by the station.
Definition: wifi-remote-station-manager.cc:1683
ns3::WifiMode::GetDataRate
uint64_t GetDataRate(uint16_t channelWidth, uint16_t guardInterval, uint8_t nss) const
Definition: wifi-mode.cc:100
ns3::MakeUintegerAccessor
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Definition: uinteger.h:45
ns3::AmrrWifiRemoteStation::m_successThreshold
uint32_t m_successThreshold
success threshold
Definition: amrr-wifi-manager.cc:46
ns3::WifiRemoteStationManager::GetHeSupported
bool GetHeSupported(void) const
Return whether the device has HE capability support enabled.
Definition: wifi-remote-station-manager.cc:256
ns3::MakeTimeAccessor
Ptr< const AttributeAccessor > MakeTimeAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Definition: nstime.h:1354