|
|
| 165 |
"than this value, as per IEEE Std. 802.11-2007, Section 9.4. " |
165 |
"than this value, as per IEEE Std. 802.11-2007, Section 9.4. " |
| 166 |
"This value will not have any effect on some rate control algorithms.", |
166 |
"This value will not have any effect on some rate control algorithms.", |
| 167 |
UintegerValue (2346), |
167 |
UintegerValue (2346), |
| 168 |
MakeUintegerAccessor (&WifiRemoteStationManager::m_fragmentationThreshold), |
168 |
MakeUintegerAccessor (&WifiRemoteStationManager::SetFragmentationThreshold, |
|
|
169 |
&WifiRemoteStationManager::GetFragmentationThreshold), |
| 169 |
MakeUintegerChecker<uint32_t> ()) |
170 |
MakeUintegerChecker<uint32_t> ()) |
| 170 |
.AddAttribute ("NonUnicastMode", "Wifi mode used for non-unicast transmissions.", |
171 |
.AddAttribute ("NonUnicastMode", "Wifi mode used for non-unicast transmissions.", |
| 171 |
WifiModeValue (), |
172 |
WifiModeValue (), |
|
|
| 259 |
void |
260 |
void |
| 260 |
WifiRemoteStationManager::SetFragmentationThreshold (uint32_t threshold) |
261 |
WifiRemoteStationManager::SetFragmentationThreshold (uint32_t threshold) |
| 261 |
{ |
262 |
{ |
| 262 |
m_fragmentationThreshold = threshold; |
263 |
m_nextFragmentationThreshold = threshold; |
|
|
264 |
} |
| 265 |
|
| 266 |
void |
| 267 |
WifiRemoteStationManager::UpdateFragmentationThreshold (void) |
| 268 |
{ |
| 269 |
m_fragmentationThreshold = m_nextFragmentationThreshold; |
| 263 |
} |
270 |
} |
| 264 |
|
271 |
|
| 265 |
void |
272 |
void |