Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Side by Side Diff: net/quic/quic_flags.cc

Issue 1304833006: relnote: Close the QUIC connection when a packet is about to be sent out (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Deprecate_quic_dont_write_when_flow_unblocked_101389540
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/quic/quic_flags.h ('k') | net/quic/quic_sent_packet_manager.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/quic/quic_flags.h" 5 #include "net/quic/quic_flags.h"
6 6
7 bool FLAGS_quic_allow_oversized_packets_for_test = false; 7 bool FLAGS_quic_allow_oversized_packets_for_test = false;
8 8
9 // When true, the use time based loss detection instead of nack. 9 // When true, the use time based loss detection instead of nack.
10 bool FLAGS_quic_use_time_loss_detection = false; 10 bool FLAGS_quic_use_time_loss_detection = false;
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 // TODO(rtenneti): Enable this flag after fixing tests. 72 // TODO(rtenneti): Enable this flag after fixing tests.
73 bool FLAGS_quic_require_handshake_confirmation = false; 73 bool FLAGS_quic_require_handshake_confirmation = false;
74 74
75 // Disables special treatment of truncated acks, since older retransmissions are 75 // Disables special treatment of truncated acks, since older retransmissions are
76 // proactively discarded in QUIC. 76 // proactively discarded in QUIC.
77 bool FLAGS_quic_disable_truncated_ack_handling = true; 77 bool FLAGS_quic_disable_truncated_ack_handling = true;
78 78
79 // If true, after a server silo receives a packet from a migrated QUIC 79 // If true, after a server silo receives a packet from a migrated QUIC
80 // client, a GO_AWAY frame is sent to the client. 80 // client, a GO_AWAY frame is sent to the client.
81 bool FLAGS_send_goaway_after_client_migration = true; 81 bool FLAGS_send_goaway_after_client_migration = true;
82
83 // Close the connection instead of attempting to write a packet out of sequence
84 // number order.
85 bool FLAGS_quic_close_connection_out_of_order_sending = true;
OLDNEW
« no previous file with comments | « net/quic/quic_flags.h ('k') | net/quic/quic_sent_packet_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698