Bug 1691 - RTS/CTS NAV reset prematurely

This commit is contained in:
Daniel Lertpratchya
2013-10-14 10:27:43 -04:00
parent b2d76a1887
commit c2bd12e525
2 changed files with 2 additions and 1 deletions

View File

@@ -29,6 +29,7 @@ Bugs fixed
- Bug 1722 - beacons transmitted concurrently
- Bug 1616 - WifiPhyStateHelper reports false CCA_BUSY times at State trace source
- Bug 1011 - assert failed. file=../src/devices/wifi/dcf-manager.cc
- Bug 1691 - RTS/CTS NAV reset prematurely
Release 3.18
=============

View File

@@ -1159,7 +1159,7 @@ MacLow::NotifyNav (Ptr<const Packet> packet,const WifiMacHeader &hdr, WifiMode t
void
MacLow::NavCounterResetCtsMissed (Time rtsEndRxTime)
{
if (m_phy->GetLastRxStartTime () > rtsEndRxTime)
if (m_phy->GetLastRxStartTime () < rtsEndRxTime)
{
DoNavResetNow (Seconds (0.0));
}