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

(-)a/src/internet/model/tcp-rx-buffer.cc (-1 / +1 lines)
 Lines 114-120   TcpRxBuffer::MaxRxSequence (void) const Link Here 
114
    { // No data allowed beyond FIN
114
    { // No data allowed beyond FIN
115
      return m_finSeq;
115
      return m_finSeq;
116
    }
116
    }
117
  else if (m_data.size ())
117
  else if (m_data.size () && m_nextRxSeq > m_data.begin ()->first)
118
    { // No data allowed beyond Rx window allowed
118
    { // No data allowed beyond Rx window allowed
119
      return m_data.begin ()->first + SequenceNumber32 (m_maxBuffer);
119
      return m_data.begin ()->first + SequenceNumber32 (m_maxBuffer);
120
    }
120
    }

Return to bug 2613