Home
last modified time | relevance | path

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

/external/chromium/third_party/libjingle/source/talk/p2p/base/
Dpseudotcp.cc247 m_cwnd = 2 * m_mss; in PseudoTcp()
317 m_cwnd = m_mss; in NotifyClock()
712 m_cwnd = talk_base::_min(m_ssthresh, nInFlight + m_mss); // (Fast Retransmit) in process()
725 m_cwnd += m_mss - talk_base::_min(nAcked, m_cwnd); in process()
730 if (m_cwnd < m_ssthresh) { in process()
731 m_cwnd += m_mss; in process()
733 m_cwnd += talk_base::_max<uint32>(1, m_mss * m_mss / m_cwnd); in process()
781 m_cwnd = m_ssthresh + 3 * m_mss; in process()
783 m_cwnd += m_mss; in process()
929 m_cwnd = 2 * m_mss; // I added this... haven't researched actual formula in transmit()
[all …]
Dpseudotcp.h191 uint32 m_ssthresh, m_cwnd; variable