Time conversions take uint64's in wifi-msdu-aggregator-test-suite
Correct programming error in cset 6293:11a2f62de3ec that only a compiler older than mine found with the standard options. Specifically, the time conversion functions (in this case, MilliSeconds()) take uint64's as their argument and I was passing a floating point value.
This commit is contained in:
@@ -83,7 +83,7 @@ WifiMsduAggregatorThroughputTest::DoRun (void)
|
||||
wifiMac.SetType ("ns3::QapWifiMac",
|
||||
"Ssid", SsidValue (ssid),
|
||||
"BeaconGeneration", BooleanValue (true),
|
||||
"BeaconInterval", TimeValue (MilliSeconds (102.4)));
|
||||
"BeaconInterval", TimeValue (MicroSeconds (102400)));
|
||||
wifiMac.SetMsduAggregatorForAc (AC_BE, "ns3::MsduStandardAggregator",
|
||||
"MaxAmsduSize", UintegerValue (4000));
|
||||
NetDeviceContainer apDev = wifi.Install (wifiPhy, wifiMac, ap);
|
||||
|
||||
Reference in New Issue
Block a user