diff --git a/src/wifi/model/wifi-phy.cc b/src/wifi/model/wifi-phy.cc index 4bc82516a..e9c7e7bd6 100644 --- a/src/wifi/model/wifi-phy.cc +++ b/src/wifi/model/wifi-phy.cc @@ -3189,7 +3189,7 @@ WifiPhy::ScheduleEndOfMpdus (Ptr event) } endOfMpduDuration += mpduDuration; - m_endOfMpduEvents.push_back (Simulator::Schedule (endOfMpduDuration, &WifiPhy::EndOfMpdu, this, event, Create (*mpdu, false), i, relativeStart, mpduDuration)); + Simulator::Schedule (endOfMpduDuration, &WifiPhy::EndOfMpdu, this, event, Create (*mpdu, false), i, relativeStart, mpduDuration); //Prepare next iteration ++i; diff --git a/src/wifi/model/wifi-phy.h b/src/wifi/model/wifi-phy.h index cac787303..d335202d2 100644 --- a/src/wifi/model/wifi-phy.h +++ b/src/wifi/model/wifi-phy.h @@ -2177,8 +2177,6 @@ private: Ptr m_postReceptionErrorModel; //!< Error model for receive packet events Time m_timeLastPreambleDetected; //!< Record the time the last preamble was detected - std::vector m_endOfMpduEvents; //!< the end of MPDU events (only used for A-MPDUs) - std::vector m_statusPerMpdu; //!< current reception status per MPDU that is filled in as long as MPDUs are being processed by the PHY in case of an A-MPDU SignalNoiseDbm m_signalNoise; //!< latest signal power and noise power in dBm (noise power includes the noise figure)