| Index: net/quic/quic_config.cc
|
| diff --git a/net/quic/quic_config.cc b/net/quic/quic_config.cc
|
| index 5330b7c9d6dedc741a4436accbdf88f2bec3268f..390efa5c6c632286664d1bf69593848cc70e5187 100644
|
| --- a/net/quic/quic_config.cc
|
| +++ b/net/quic/quic_config.cc
|
| @@ -427,6 +427,7 @@ QuicErrorCode QuicFixedTagVector::ProcessPeerHello(
|
| QuicConfig::QuicConfig()
|
| : max_time_before_crypto_handshake_(QuicTime::Delta::Zero()),
|
| max_idle_time_before_crypto_handshake_(QuicTime::Delta::Zero()),
|
| + max_undecryptable_packets_(0),
|
| congestion_feedback_(kCGST, PRESENCE_REQUIRED),
|
| connection_options_(kCOPT, PRESENCE_OPTIONAL),
|
| idle_connection_state_lifetime_seconds_(kICSL, PRESENCE_REQUIRED),
|
| @@ -643,6 +644,7 @@ void QuicConfig::SetDefaults() {
|
| QuicTime::Delta::FromSeconds(kMaxTimeForCryptoHandshakeSecs);
|
| max_idle_time_before_crypto_handshake_ =
|
| QuicTime::Delta::FromSeconds(kInitialIdleTimeoutSecs);
|
| + max_undecryptable_packets_ = kDefaultMaxUndecryptablePackets;
|
|
|
| SetInitialFlowControlWindowToSend(kDefaultFlowControlSendWindow);
|
| SetInitialStreamFlowControlWindowToSend(kDefaultFlowControlSendWindow);
|
|
|