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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 // If true, default quic_time_wait_list_seconds (time to keep a connection ID on | 69 // If true, default quic_time_wait_list_seconds (time to keep a connection ID on |
70 // the time-wait list) is 200 seconds rather than 5 seconds and increase the | 70 // the time-wait list) is 200 seconds rather than 5 seconds and increase the |
71 // maximum time-wait list size to 600,000. | 71 // maximum time-wait list size to 600,000. |
72 bool FLAGS_increase_time_wait_list = true; | 72 bool FLAGS_increase_time_wait_list = true; |
73 | 73 |
74 // Limits QUIC's max CWND to 200 packets. | 74 // Limits QUIC's max CWND to 200 packets. |
75 bool FLAGS_quic_limit_max_cwnd = true; | 75 bool FLAGS_quic_limit_max_cwnd = true; |
76 | 76 |
77 // If true, don't serialize invalid HTTP headers when converting HTTP to SPDY. | 77 // If true, don't serialize invalid HTTP headers when converting HTTP to SPDY. |
78 bool FLAGS_spdy_strip_invalid_headers = true; | 78 bool FLAGS_spdy_strip_invalid_headers = true; |
| 79 |
| 80 // 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 |
| 82 // get_max_open_streams(). |
| 83 bool FLAGS_exact_stream_id_delta = true; |
OLD | NEW |