OLD | NEW |
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 27 matching lines...) Expand all Loading... |
38 // Maximum number of connections on the time-wait list. A negative value implies | 38 // Maximum number of connections on the time-wait list. A negative value implies |
39 // no configured limit. | 39 // no configured limit. |
40 int64 FLAGS_quic_time_wait_list_max_connections = 50000; | 40 int64 FLAGS_quic_time_wait_list_max_connections = 50000; |
41 | 41 |
42 // Enables server-side support for QUIC stateless rejects. | 42 // Enables server-side support for QUIC stateless rejects. |
43 bool FLAGS_enable_quic_stateless_reject_support = true; | 43 bool FLAGS_enable_quic_stateless_reject_support = true; |
44 | 44 |
45 // If true, flow controller may grow the receive window size if necessary. | 45 // If true, flow controller may grow the receive window size if necessary. |
46 bool FLAGS_quic_auto_tune_receive_window = true; | 46 bool FLAGS_quic_auto_tune_receive_window = true; |
47 | 47 |
48 // Don't ack acks in QUIC, even when there is a recent missing packet. | |
49 bool FLAGS_quic_dont_ack_acks = true; | |
50 | |
51 // Enables sending of FEC packet only when FEC alarm goes off. | 48 // Enables sending of FEC packet only when FEC alarm goes off. |
52 bool FLAGS_quic_send_fec_packet_only_on_fec_alarm = true; | 49 bool FLAGS_quic_send_fec_packet_only_on_fec_alarm = true; |
53 | 50 |
54 // Change from using IsPacketRemovable to IsPacketUseless in | 51 // Change from using IsPacketRemovable to IsPacketUseless in |
55 // QuicUnackedPacketMap. | 52 // QuicUnackedPacketMap. |
56 bool FLAGS_quic_use_is_useless_packet = true; | 53 bool FLAGS_quic_use_is_useless_packet = true; |
57 | 54 |
58 // Delay setting QUIC's retransmission alarm until an ack is fully | 55 // Delay setting QUIC's retransmission alarm until an ack is fully |
59 // processed or a write is complete. | 56 // processed or a write is complete. |
60 bool FLAGS_quic_delay_retransmission_alarm = true; | 57 bool FLAGS_quic_delay_retransmission_alarm = true; |
61 | 58 |
62 // Enables server-side path MTU discovery in QUIC. | 59 // Enables server-side path MTU discovery in QUIC. |
63 bool FLAGS_quic_do_path_mtu_discovery = true; | 60 bool FLAGS_quic_do_path_mtu_discovery = true; |
OLD | NEW |