From 9bf7682e048eff0d5bc296f061354571a5807b72 Mon Sep 17 00:00:00 2001 From: Stefano Avallone Date: Tue, 18 Jan 2022 13:23:43 +0100 Subject: [PATCH] wifi: Set length field of the TXVECTOR reconstructed from PPDU --- src/wifi/model/he/he-ppdu.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wifi/model/he/he-ppdu.cc b/src/wifi/model/he/he-ppdu.cc index 0b7e573c5..919354bb6 100644 --- a/src/wifi/model/he/he-ppdu.cc +++ b/src/wifi/model/he/he-ppdu.cc @@ -134,6 +134,7 @@ HePpdu::DoGetTxVector (void) const txVector.SetNss (m_heSig.GetNStreams ()); txVector.SetGuardInterval (m_heSig.GetGuardInterval ()); txVector.SetBssColor (m_heSig.GetBssColor ()); + txVector.SetLength (m_lSig.GetLength ()); txVector.SetAggregation (m_psdus.size () > 1 || m_psdus.begin ()->second->IsAggregate ()); for (auto const& muUserInfo : m_muUserInfos) {