diff options
Diffstat (limited to 'net/quic/congestion_control/tcp_cubic_sender.cc')
-rw-r--r-- | net/quic/congestion_control/tcp_cubic_sender.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/quic/congestion_control/tcp_cubic_sender.cc b/net/quic/congestion_control/tcp_cubic_sender.cc index a978cf6..b44d2da 100644 --- a/net/quic/congestion_control/tcp_cubic_sender.cc +++ b/net/quic/congestion_control/tcp_cubic_sender.cc @@ -24,7 +24,7 @@ const QuicByteCount kDefaultReceiveWindow = 64000; const int64 kInitialCongestionWindow = 10; const int kMaxBurstLength = 3; // Constants used for RTT calculation. -const int kInitialRttMs = 60; // At a typical RTT 60 ms. +const int kInitialRttMs = 100; // At a typical RTT 100 ms. const float kAlpha = 0.125f; const float kOneMinusAlpha = (1 - kAlpha); const float kBeta = 0.25f; |