You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if you run the code on ns-3.30 or a higher version, the simulator does not support some functions in the file. NqosWifiMacHelper wifiMac = NqosWifiMacHelper::Default (); need to be changed to WifiMacHelper wifiMac;. YansWifiPhyHelper wifiPhy = YansWifiPhyHelper::Default ();need to be changed to YansWifiPhyHelper wifiPhy;. WifiHelper wifi = WifiHelper::Default ();toWifiHelper wifi;.
The text was updated successfully, but these errors were encountered:
if you run the code on ns-3.30 or a higher version, the simulator does not support some functions in the file.
NqosWifiMacHelper wifiMac = NqosWifiMacHelper::Default ();
need to be changed toWifiMacHelper wifiMac;
.YansWifiPhyHelper wifiPhy = YansWifiPhyHelper::Default ();
need to be changed toYansWifiPhyHelper wifiPhy;
.WifiHelper wifi = WifiHelper::Default ();
toWifiHelper wifi;
.The text was updated successfully, but these errors were encountered: