Home
last modified time | relevance | path

Searched refs:minCwnd (Results 1 – 10 of 10) sorted by relevance

/dports/net/mvfst/mvfst-248b2dc39bbd36863bbaa50385e8683428610009/quic/congestion_control/
H A DCopa2.cpp202 auto minCwnd = conn_.transportSettings.minCwndInMss * conn_.udpSendPacketLen; in onPacketAcked() local
203 if (probeRtt_ || cwndBytes_ < minCwnd) { in onPacketAcked()
204 cwndBytes_ = minCwnd; in onPacketAcked()
H A DQuicCubic.cpp73 auto minCwnd = conn_.transportSettings.minCwndInMss * conn_.udpSendPacketLen; in onPersistentCongestion() local
74 ssthresh_ = std::max(cwndBytes_ / 2, minCwnd); in onPersistentCongestion()
75 cwndBytes_ = minCwnd; in onPersistentCongestion()
/dports/net/ns3/ns-allinone-3.35/ns-3.35/src/internet/test/
H A Dtcp-ledbat-test.cc281 UintegerValue minCwnd; in ExecuteTest() local
292 cong->GetAttribute ("MinCwnd", minCwnd); in ExecuteTest()
305 m_cWnd = std::max (m_cWnd, static_cast<uint32_t> (m_segmentSize * minCwnd.Get ())); in ExecuteTest()
/dports/net/storj/storj-1.45.3/vendor/github.com/lucas-clemente/quic-go/internal/congestion/
H A Dcubic_sender.go205 if minCwnd := c.minCongestionWindow(); c.congestionWindow < minCwnd {
206 c.congestionWindow = minCwnd
/dports/security/xray-core/Xray-core-1.5.0/vendor/github.com/lucas-clemente/quic-go/internal/congestion/
H A Dcubic_sender.go205 if minCwnd := c.minCongestionWindow(); c.congestionWindow < minCwnd {
206 c.congestionWindow = minCwnd
/dports/dns/nextdns/nextdns-1.32.2/vendor/github.com/lucas-clemente/quic-go/internal/congestion/
H A Dcubic_sender.go205 if minCwnd := c.minCongestionWindow(); c.congestionWindow < minCwnd {
206 c.congestionWindow = minCwnd
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/lucas-clemente/quic-go/internal/congestion/
H A Dcubic_sender.go205 if minCwnd := c.minCongestionWindow(); c.congestionWindow < minCwnd {
206 c.congestionWindow = minCwnd
/dports/net/ooni-probe-cli/probe-cli-3.10.1/vendor/github.com/lucas-clemente/quic-go/internal/congestion/
H A Dcubic_sender.go205 if minCwnd := c.minCongestionWindow(); c.congestionWindow < minCwnd {
206 c.congestionWindow = minCwnd
/dports/net/traefik/traefik-2.6.1/vendor/github.com/lucas-clemente/quic-go/internal/congestion/
H A Dcubic_sender.go205 if minCwnd := c.minCongestionWindow(); c.congestionWindow < minCwnd {
206 c.congestionWindow = minCwnd
/dports/net/mvfst/mvfst-248b2dc39bbd36863bbaa50385e8683428610009/quic/api/
H A DQuicTransportBase.cpp3004 auto minCwnd = usingBbr ? kMinCwndInMssForBbr in setTransportSettings() local
3006 conn_->pacer = std::make_unique<TokenlessPacer>(*conn_, minCwnd); in setTransportSettings()