Searched refs:m_ssthresh (Results 1 – 2 of 2) sorted by relevance
242 m_ssthresh = m_rbuf_len; in PseudoTcp()306 m_ssthresh = std::max(nInFlight / 2, 2 * m_mss); in NotifyClock()761 m_cwnd = std::min(m_ssthresh, nInFlight + m_mss); // (Fast Retransmit) in process()779 if (m_cwnd < m_ssthresh) { in process()806 m_ssthresh = std::max(nInFlight / 2, 2 * m_mss); in process()809 m_cwnd = m_ssthresh + 3 * m_mss; in process()1106 << " ssthresh: " << m_ssthresh << "]"; in attemptSend()1178 m_ssthresh = std::max(m_ssthresh, 2 * m_mss); in adjustMTU()1296 m_ssthresh = new_size; in resizeReceiveBuffer()
234 uint32_t m_ssthresh, m_cwnd; variable