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 28 matching lines...) Expand all Loading... |
39 // Maximum number of connections on the time-wait list. A negative value implies | 39 // Maximum number of connections on the time-wait list. A negative value implies |
40 // no configured limit. | 40 // no configured limit. |
41 int64 FLAGS_quic_time_wait_list_max_connections = 600000; | 41 int64 FLAGS_quic_time_wait_list_max_connections = 600000; |
42 | 42 |
43 // Enables server-side support for QUIC stateless rejects. | 43 // Enables server-side support for QUIC stateless rejects. |
44 bool FLAGS_enable_quic_stateless_reject_support = true; | 44 bool FLAGS_enable_quic_stateless_reject_support = true; |
45 | 45 |
46 // If true, flow controller may grow the receive window size if necessary. | 46 // If true, flow controller may grow the receive window size if necessary. |
47 bool FLAGS_quic_auto_tune_receive_window = true; | 47 bool FLAGS_quic_auto_tune_receive_window = true; |
48 | 48 |
49 // Enables sending of FEC packet only when FEC alarm goes off. | |
50 bool FLAGS_quic_send_fec_packet_only_on_fec_alarm = true; | |
51 | |
52 // Enables server-side path MTU discovery in QUIC. | 49 // Enables server-side path MTU discovery in QUIC. |
53 bool FLAGS_quic_do_path_mtu_discovery = true; | 50 bool FLAGS_quic_do_path_mtu_discovery = true; |
54 | 51 |
55 // Process QUIC frames as soon as they're parsed, instead of waiting for the | 52 // Process QUIC frames as soon as they're parsed, instead of waiting for the |
56 // packet's parsing to complete. | 53 // packet's parsing to complete. |
57 bool FLAGS_quic_process_frames_inline = true; | 54 bool FLAGS_quic_process_frames_inline = true; |
58 | 55 |
59 // No longer call OnCanWrite when connection level flow control unblocks in | 56 // No longer call OnCanWrite when connection level flow control unblocks in |
60 // QuicSession. | 57 // QuicSession. |
61 bool FLAGS_quic_dont_write_when_flow_unblocked = true; | 58 bool FLAGS_quic_dont_write_when_flow_unblocked = true; |
(...skipping 16 matching lines...) Expand all Loading... |
78 bool FLAGS_spdy_strip_invalid_headers = true; | 75 bool FLAGS_spdy_strip_invalid_headers = true; |
79 | 76 |
80 // If true, instead of enforcing a fixed limit of 200 between the last | 77 // If true, instead of enforcing a fixed limit of 200 between the last |
81 // client-created stream ID and the next one, calculate the difference based on | 78 // client-created stream ID and the next one, calculate the difference based on |
82 // get_max_open_streams(). | 79 // get_max_open_streams(). |
83 bool FLAGS_exact_stream_id_delta = true; | 80 bool FLAGS_exact_stream_id_delta = true; |
84 | 81 |
85 // Limits the pacing burst out of quiescence to the current congestion window in | 82 // Limits the pacing burst out of quiescence to the current congestion window in |
86 // packets. | 83 // packets. |
87 bool FLAGS_quic_limit_pacing_burst = true; | 84 bool FLAGS_quic_limit_pacing_burst = true; |
OLD | NEW |