View | Details | Raw Unified | Return to bug 250
Collapse All | Expand All

(-)a/src/internet-stack/tcp-socket-impl.cc (-1 / +4 lines)
 Lines 1260-1266   void TcpSocketImpl::NewRx (Ptr<Packet> p Link Here 
1260
  }
1260
  }
1261
  else
1261
  else
1262
  {
1262
  {
1263
    m_delAckEvent = Simulator::Schedule (m_delAckTimeout, &TcpSocketImpl::DelAckTimeout, this);
1263
    if (m_delAckEvent.IsExpired())
1264
    {
1265
      m_delAckEvent = Simulator::Schedule (m_delAckTimeout, &TcpSocketImpl::DelAckTimeout, this);
1266
    }
1264
  }
1267
  }
1265
}
1268
}
1266
1269

Return to bug 250