Searched refs:m_cwnd (Results 1 – 2 of 2) sorted by relevance
241 m_cwnd = 2 * m_mss; in PseudoTcp()309 m_cwnd = m_mss; in NotifyClock()397 return m_cwnd; in GetCongestionWindow()761 m_cwnd = std::min(m_ssthresh, nInFlight + m_mss); // (Fast Retransmit) in process()774 m_cwnd += m_mss - std::min(nAcked, m_cwnd); in process()779 if (m_cwnd < m_ssthresh) { in process()780 m_cwnd += m_mss; in process()782 m_cwnd += std::max<uint32_t>(1, m_mss * m_mss / m_cwnd); in process()809 m_cwnd = m_ssthresh + 3 * m_mss; in process()811 m_cwnd += m_mss; in process()[all …]
234 uint32_t m_ssthresh, m_cwnd; variable