Searched refs:m_ssthresh (Results 1 – 2 of 2) sorted by relevance
245 m_ssthresh = m_rbuf_len; in PseudoTcp()311 m_ssthresh = std::max(nInFlight / 2, 2 * m_mss); in NotifyClock()765 m_cwnd = std::min(m_ssthresh, nInFlight + m_mss); // (Fast Retransmit) in process()783 if (m_cwnd < m_ssthresh) { in process()809 m_ssthresh = std::max(nInFlight / 2, 2 * m_mss); in process()811 m_cwnd = m_ssthresh + 3 * m_mss; in process()1080 << " ssthresh: " << m_ssthresh << "]"; in attemptSend()1153 m_ssthresh = std::max(m_ssthresh, 2 * m_mss); in adjustMTU()1276 m_ssthresh = new_size; in resizeReceiveBuffer()
226 uint32_t m_ssthresh, m_cwnd; variable