| Index: net/quic/quic_flags.cc
|
| diff --git a/net/quic/quic_flags.cc b/net/quic/quic_flags.cc
|
| index 29d02b6129aa25e3c99204a27985a4cfc82e3b4c..cd92ea6d87263142e2c5159e1b55aeea81d5a68a 100644
|
| --- a/net/quic/quic_flags.cc
|
| +++ b/net/quic/quic_flags.cc
|
| @@ -66,21 +66,10 @@ bool FLAGS_quic_require_fix = true;
|
| // If true, headers stream will support receiving PUSH_PROMISE frames.
|
| bool FLAGS_quic_supports_push_promise = true;
|
|
|
| -// If true, make sure new incoming streams correctly cede to higher
|
| -// priority (or batch) streams when doing QUIC writes.
|
| -bool FLAGS_quic_cede_correctly = true;
|
| -
|
| -// Resend 0RTT requests in response to an REJ that re-establishes encryption.
|
| -bool FLAGS_quic_reply_to_rej = true;
|
| -
|
| // If true, QUIC connections can do bandwidth resumption with an initial window
|
| // of < 10 packets.
|
| bool FLAGS_quic_no_lower_bw_resumption_limit = true;
|
|
|
| -// Limit the ruction of slow start large reduction to 1/2 the current CWND once
|
| -// the initial flight has been acked.
|
| -bool FLAGS_quic_sslr_limit_reduction = true;
|
| -
|
| // If true, flow controller may grow the receive window size if necessary.
|
| bool FLAGS_quic_auto_tune_receive_window = true;
|
|
|
| @@ -103,10 +92,6 @@ bool FLAGS_quic_use_hash_in_scup = true;
|
| // flags.
|
| bool FLAGS_quic_use_old_public_reset_packets = true;
|
|
|
| -// Ignore the peer's recieve buffer size and instead set max CWND based on the
|
| -// amount of data the sender is willing to have in flight.
|
| -bool FLAGS_quic_ignore_srbf = true;
|
| -
|
| // Allow the NPRR connection option which reduces QUIC\'s pacing rate during
|
| // recovery instead of PRR.
|
| bool FLAGS_quic_allow_noprr = true;
|
| @@ -167,3 +152,6 @@ bool FLAGS_quic_enable_version_35 = false;
|
|
|
| // If true, enables QUIC_VERSION_36.
|
| bool FLAGS_quic_enable_version_36 = false;
|
| +
|
| +// If true, requires support for X509 certificates in QUIC CHLO PDMDs.
|
| +bool FLAGS_quic_require_x509 = false;
|
|
|