From 337763e51476086bdc79651c600fb4225a150b1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deronne?= Date: Mon, 6 Nov 2023 19:55:06 +0100 Subject: [PATCH] wifi: Update RtsCtsThreshold attribute to be in line with dot11RTSThreshold from latest standard --- src/wifi/model/wifi-remote-station-manager.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wifi/model/wifi-remote-station-manager.cc b/src/wifi/model/wifi-remote-station-manager.cc index 90e3ca29d..9ec2e9540 100644 --- a/src/wifi/model/wifi-remote-station-manager.cc +++ b/src/wifi/model/wifi-remote-station-manager.cc @@ -71,9 +71,9 @@ WifiRemoteStationManager::GetTypeId() "If the size of the PSDU is bigger than this value, we use an RTS/CTS " "handshake before sending the data frame." "This value will not have any effect on some rate control algorithms.", - UintegerValue(65535), + UintegerValue(4692480), MakeUintegerAccessor(&WifiRemoteStationManager::SetRtsCtsThreshold), - MakeUintegerChecker()) + MakeUintegerChecker(0, 4692480)) .AddAttribute( "FragmentationThreshold", "If the size of the PSDU is bigger than this value, we fragment it such that the "