| Index: net/quic/congestion_control/hybrid_slow_start.cc
|
| diff --git a/net/quic/congestion_control/hybrid_slow_start.cc b/net/quic/congestion_control/hybrid_slow_start.cc
|
| index e3789b45f8a76668658d9397ffae7a91dab4859b..b7e10b9f4df5f0c6073f3c578d14129f7cf8326d 100644
|
| --- a/net/quic/congestion_control/hybrid_slow_start.cc
|
| +++ b/net/quic/congestion_control/hybrid_slow_start.cc
|
| @@ -16,7 +16,8 @@ namespace net {
|
| const int64 kHybridStartLowWindow = 16;
|
| // Number of delay samples for detecting the increase of delay.
|
| const uint32 kHybridStartMinSamples = 8;
|
| -const int kHybridStartDelayFactorExp = 4; // 2^4 = 16
|
| +// Exit slow start if the min rtt has increased by more than 1/8th.
|
| +const int kHybridStartDelayFactorExp = 3; // 2^3 = 8
|
| // The original paper specifies 2 and 8ms, but those have changed over time.
|
| const int64 kHybridStartDelayMinThresholdUs = 4000;
|
| const int64 kHybridStartDelayMaxThresholdUs = 16000;
|
|
|