From 7a7b8a1156ef07c0b468d1908076fb7ef438ba41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deronne?= Date: Wed, 28 Mar 2018 14:01:05 +0200 Subject: [PATCH] wifi: Set NTx to 1 in TxVector for broadcast data frames --- src/wifi/model/wifi-remote-station-manager.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wifi/model/wifi-remote-station-manager.cc b/src/wifi/model/wifi-remote-station-manager.cc index 61e1841a4..3177c089d 100644 --- a/src/wifi/model/wifi-remote-station-manager.cc +++ b/src/wifi/model/wifi-remote-station-manager.cc @@ -849,6 +849,7 @@ WifiRemoteStationManager::GetDataTxVector (Mac48Address address, const WifiMacHe v.SetTxPowerLevel (m_defaultTxPowerLevel); v.SetChannelWidth (GetChannelWidthForTransmission (mode, m_wifiPhy->GetChannelWidth ())); v.SetGuardInterval (ConvertGuardIntervalToNanoSeconds (mode, m_wifiPhy->GetShortGuardInterval (), m_wifiPhy->GetGuardInterval ())); + v.SetNTx (1); v.SetNss (1); v.SetNess (0); v.SetStbc (m_wifiPhy->GetStbc ());