Home
last modified time | relevance | path

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

/external/chromium/third_party/libjingle/source/talk/p2p/base/
Dpseudotcp.cc242 m_mss = MIN_PACKET - PACKET_OVERHEAD; in PseudoTcp()
247 m_cwnd = 2 * m_mss; in PseudoTcp()
315 m_ssthresh = talk_base::_max(nInFlight / 2, 2 * m_mss); in NotifyClock()
317 m_cwnd = m_mss; in NotifyClock()
417 >= talk_base::_min<uint32>(sizeof(m_rbuf) / 2, m_mss)) { in Recv()
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()
731 m_cwnd += m_mss; in process()
733 m_cwnd += talk_base::_max<uint32>(1, m_mss * m_mss / m_cwnd); in process()
779 m_ssthresh = talk_base::_max(nInFlight / 2, 2 * m_mss); in process()
[all …]
Dpseudotcp.h180 uint32 m_mss, m_msslevel, m_largest, m_mtu_advise; variable