| Index: net/quic/quic_protocol.h
|
| diff --git a/net/quic/quic_protocol.h b/net/quic/quic_protocol.h
|
| index d6aed053226d013c525394d1ff6bfda22f2ad31c..9d73db1d16bd4adab486b93f55e36a219a02d72f 100644
|
| --- a/net/quic/quic_protocol.h
|
| +++ b/net/quic/quic_protocol.h
|
| @@ -108,12 +108,14 @@ const QuicStreamId kHeadersStreamId = 3;
|
| // Maximum delayed ack time, in ms.
|
| const int kMaxDelayedAckTimeMs = 25;
|
|
|
| -// The default idle timeout before the crypto handshake succeeds.
|
| -const int64 kDefaultInitialTimeoutSecs = 120; // 2 mins.
|
| +// The timeout before the handshake succeeds.
|
| +const int64 kInitialIdleTimeoutSecs = 5;
|
| +// The default idle timeout.
|
| +const int64 kDefaultIdleTimeoutSecs = 30;
|
| // The maximum idle timeout that can be negotiated.
|
| const int64 kMaximumIdleTimeoutSecs = 60 * 10; // 10 minutes.
|
| // The default timeout for a connection until the crypto handshake succeeds.
|
| -const int64 kDefaultMaxTimeForCryptoHandshakeSecs = 10; // 10 secs.
|
| +const int64 kMaxTimeForCryptoHandshakeSecs = 10; // 10 secs.
|
|
|
| // Default ping timeout.
|
| const int64 kPingTimeoutSecs = 15; // 15 secs.
|
|
|