Searched refs:m_mss (Results 1 – 2 of 2) sorted by relevance
236 m_mss = MIN_PACKET - PACKET_OVERHEAD; in PseudoTcp()241 m_cwnd = 2 * m_mss; in PseudoTcp()306 m_ssthresh = std::max(nInFlight / 2, 2 * m_mss); in NotifyClock()309 m_cwnd = m_mss; in NotifyClock()439 std::min<uint32_t>(m_rbuf_len / 2, m_mss)) { in Recv()761 m_cwnd = std::min(m_ssthresh, nInFlight + m_mss); // (Fast Retransmit) in process()774 m_cwnd += m_mss - std::min(nAcked, m_cwnd); in process()780 m_cwnd += m_mss; in process()782 m_cwnd += std::max<uint32_t>(1, m_mss * m_mss / m_cwnd); in process()806 m_ssthresh = std::max(nInFlight / 2, 2 * m_mss); in process()[all …]
223 uint32_t m_mss, m_msslevel, m_largest, m_mtu_advise; variable