Chromium Code Reviews| Index: net/quic/quic_flags.cc |
| diff --git a/net/quic/quic_flags.cc b/net/quic/quic_flags.cc |
| index 5e8584d79eaa680ff6ed5133e395fe37f9552278..01da76b3cb245489ed611027259a463882d31d80 100644 |
| --- a/net/quic/quic_flags.cc |
| +++ b/net/quic/quic_flags.cc |
| @@ -134,3 +134,7 @@ bool FLAGS_spdy_on_stream_end = true; |
| // If true, QuicCryptoServerConfig will use cached compressed certificates |
| // if the uncompressed certs to be compressed hits the cache. |
| bool FLAGS_quic_use_cached_compressed_certs = false; |
| + |
| +// Enable a connection option allowing connections to time out if more than 5 |
| +// consecutive RTOs are sent. |
| +bool FLAGS_quic_enable_rto_timeout = false; |
|
Ryan Hamilton
2016/03/16 20:27:55
I think we normally default new flags to true when
|