X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=src%2Fnepi%2Fresources%2Fns3%2Fclasses%2Faarfcd_wifi_manager.py;h=2ac02e8a0ad7dbf9d833e1e78e105e967438801c;hb=ac866efb762875550bdc0c05d693e5eb026f435e;hp=625662f7cf68624ede765f22c3328202efe27dd8;hpb=f4a5a9a345818610739e9e5841b9da5b1a062f5d;p=nepi.git diff --git a/src/nepi/resources/ns3/classes/aarfcd_wifi_manager.py b/src/nepi/resources/ns3/classes/aarfcd_wifi_manager.py index 625662f7..2ac02e8a 100644 --- a/src/nepi/resources/ns3/classes/aarfcd_wifi_manager.py +++ b/src/nepi/resources/ns3/classes/aarfcd_wifi_manager.py @@ -19,7 +19,7 @@ from nepi.execution.attribute import Attribute, Flags, Types from nepi.execution.trace import Trace, TraceAttr from nepi.execution.resource import ResourceManager, clsinit_copy, \ - ResourceState, reschedule_delay + ResourceState from nepi.resources.ns3.ns3wifiremotestationmanager import NS3BaseWifiRemoteStationManager @clsinit_copy @@ -150,7 +150,7 @@ class NS3AarfcdWifiManager(NS3BaseWifiRemoteStationManager): cls._register_attribute(attr_maxslrc) attr_rtsctsthreshold = Attribute("RtsCtsThreshold", - "If the size of the data packet + LLC header + MAC header + FCS trailer is bigger than this value, we use an RTS/CTS handshake before sending the data, as per IEEE Std. 802.11-2007, Section 9.2.6. This value will not have any effect on some rate control algorithms.", + "If the size of the data packet + LLC header + MAC header + FCS trailer is bigger than this value, we use an RTS/CTS handshake before sending the data, as per IEEE Std. 802.11-2012, Section 9.3.5. This value will not have any effect on some rate control algorithms.", type = Types.Integer, default = "2346", allowed = None, @@ -160,7 +160,7 @@ class NS3AarfcdWifiManager(NS3BaseWifiRemoteStationManager): cls._register_attribute(attr_rtsctsthreshold) attr_fragmentationthreshold = Attribute("FragmentationThreshold", - "If the size of the data packet + LLC header + MAC header + FCS trailer is biggerthan this value, we fragment it such that the size of the fragments are equal or smaller than this value, as per IEEE Std. 802.11-2007, Section 9.4. This value will not have any effect on some rate control algorithms.", + "If the size of the data packet + LLC header + MAC header + FCS trailer is biggerthan this value, we fragment it such that the size of the fragments are equal or smaller than this value, as per IEEE Std. 802.11-2012, Section 9.5. This value will not have any effect on some rate control algorithms.", type = Types.Integer, default = "2346", allowed = None,