Searched refs:m_ssthresh (Results 1 – 2 of 2) sorted by relevance
248 m_ssthresh = sizeof(m_rbuf); in PseudoTcp()315 m_ssthresh = talk_base::_max(nInFlight / 2, 2 * m_mss); in NotifyClock()712 m_cwnd = talk_base::_min(m_ssthresh, nInFlight + m_mss); // (Fast Retransmit) in process()730 if (m_cwnd < m_ssthresh) { in process()779 m_ssthresh = talk_base::_max(nInFlight / 2, 2 * m_mss); in process()781 m_cwnd = m_ssthresh + 3 * m_mss; in process()1005 << " ssthresh: " << m_ssthresh << "]"; in attemptSend()1081 m_ssthresh = talk_base::_max(m_ssthresh, 2 * m_mss); in adjustMTU()
191 uint32 m_ssthresh, m_cwnd; variable