From 2c9ffbc41bfde046df777a4619ee9eab356721cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deronne?= Date: Sun, 3 Jun 2018 10:13:17 +0200 Subject: [PATCH] wifi: Fix A-MPDU settings in wifi-manager-example --- src/wifi/examples/wifi-manager-example.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wifi/examples/wifi-manager-example.cc b/src/wifi/examples/wifi-manager-example.cc index 1d9dc2e0f..dbcf73f16 100644 --- a/src/wifi/examples/wifi-manager-example.cc +++ b/src/wifi/examples/wifi-manager-example.cc @@ -356,11 +356,11 @@ int main (int argc, char *argv[]) Ssid ssid = Ssid ("ns-3-ssid"); wifiMac.SetType ("ns3::StaWifiMac", "Ssid", SsidValue (ssid), - "ActiveProbing", BooleanValue (false)); + "BE_MaxAmpduSize", UintegerValue (maxAmpduSize)); serverDevice = wifi.Install (wifiPhy, wifiMac, serverNode); wifiMac.SetType ("ns3::ApWifiMac", "Ssid", SsidValue (ssid), - "BeaconGeneration", BooleanValue (true)); + "BE_MaxAmpduSize", UintegerValue (maxAmpduSize)); clientDevice = wifi.Install (wifiPhy, wifiMac, clientNode); } else