From 9cdf0f51bf67ecb8df0ece7c12283c705f1531d7 Mon Sep 17 00:00:00 2001 From: adrien gougeon Date: Fri, 25 Sep 2020 18:25:17 +0200 Subject: [PATCH] readded active probing = false --- src/surf/network_ns3.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/surf/network_ns3.cpp b/src/surf/network_ns3.cpp index 4494cd21e1..76215d9a9c 100644 --- a/src/surf/network_ns3.cpp +++ b/src/surf/network_ns3.cpp @@ -607,8 +607,8 @@ void ns3_add_direct_route(NetPointNs3* src, NetPointNs3* dst, double bw, double wifiPhy.Set("MaxSupportedRxSpatialStreams", ns3::UintegerValue(zone->get_nss())); wifiMac.SetType ("ns3::StaWifiMac", - "Ssid", ns3::SsidValue(link_name)); - //~ "ActiveProbing", ns3::BooleanValue(false)); + "Ssid", ns3::SsidValue(link_name), + "ActiveProbing", ns3::BooleanValue(false)); netA.Add(wifi.Install (wifiPhy, wifiMac, staNode)); -- 2.20.1