Home
last modified time | relevance | path

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

/external/webrtc/webrtc/p2p/base/
Dpseudotcp.cc244 m_cwnd = 2 * m_mss; in PseudoTcp()
313 m_cwnd = m_mss; in NotifyClock()
399 return m_cwnd; in GetCongestionWindow()
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()
783 if (m_cwnd < m_ssthresh) { 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()
811 m_cwnd = m_ssthresh + 3 * m_mss; in process()
813 m_cwnd += m_mss; in process()
[all …]
Dpseudotcp.h226 uint32_t m_ssthresh, m_cwnd; variable