Searched refs:m_ssthresh (Results 1 – 2 of 2) sorted by relevance
243 m_ssthresh = m_rbuf_len; in PseudoTcp()307 m_ssthresh = std::max(nInFlight / 2, 2 * m_mss); in NotifyClock()753 m_cwnd = std::min(m_ssthresh, nInFlight + m_mss); // (Fast Retransmit) in process()771 if (m_cwnd < m_ssthresh) { in process()798 m_ssthresh = std::max(nInFlight / 2, 2 * m_mss); in process()801 m_cwnd = m_ssthresh + 3 * m_mss; in process()1090 << " ssthresh: " << m_ssthresh << "]"; in attemptSend()1162 m_ssthresh = std::max(m_ssthresh, 2 * m_mss); in adjustMTU()1280 m_ssthresh = new_size; in resizeReceiveBuffer()
279 uint32_t m_ssthresh, m_cwnd; variable