Home
last modified time | relevance | path

Searched refs:m_mss (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/webrtc/p2p/base/
Dpseudotcp.cc239 m_mss = MIN_PACKET - PACKET_OVERHEAD; in PseudoTcp()
244 m_cwnd = 2 * m_mss; in PseudoTcp()
311 m_ssthresh = std::max(nInFlight / 2, 2 * m_mss); in NotifyClock()
313 m_cwnd = m_mss; in NotifyClock()
441 std::min<uint32_t>(m_rbuf_len / 2, m_mss)) { in Recv()
765 m_cwnd = std::min(m_ssthresh, nInFlight + m_mss); // (Fast Retransmit) in process()
778 m_cwnd += m_mss - std::min(nAcked, m_cwnd); in process()
784 m_cwnd += m_mss; in process()
786 m_cwnd += std::max<uint32_t>(1, m_mss * m_mss / m_cwnd); in process()
809 m_ssthresh = std::max(nInFlight / 2, 2 * m_mss); in process()
[all …]
Dpseudotcp.h215 uint32_t m_mss, m_msslevel, m_largest, m_mtu_advise; variable