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 #ifndef NET_QUIC_QUIC_FLAGS_H_ | 5 #ifndef NET_QUIC_QUIC_FLAGS_H_ |
6 #define NET_QUIC_QUIC_FLAGS_H_ | 6 #define NET_QUIC_QUIC_FLAGS_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "net/base/net_export.h" | 9 #include "net/base/net_export.h" |
10 | 10 |
(...skipping 10 matching lines...) Expand all Loading... |
21 NET_EXPORT_PRIVATE extern bool FLAGS_quic_auto_tune_receive_window; | 21 NET_EXPORT_PRIVATE extern bool FLAGS_quic_auto_tune_receive_window; |
22 NET_EXPORT_PRIVATE extern bool FLAGS_quic_limit_max_cwnd; | 22 NET_EXPORT_PRIVATE extern bool FLAGS_quic_limit_max_cwnd; |
23 NET_EXPORT_PRIVATE extern bool FLAGS_quic_require_handshake_confirmation; | 23 NET_EXPORT_PRIVATE extern bool FLAGS_quic_require_handshake_confirmation; |
24 NET_EXPORT_PRIVATE extern bool FLAGS_quic_disable_truncated_ack_handling; | 24 NET_EXPORT_PRIVATE extern bool FLAGS_quic_disable_truncated_ack_handling; |
25 NET_EXPORT_PRIVATE extern bool FLAGS_send_goaway_after_client_migration; | 25 NET_EXPORT_PRIVATE extern bool FLAGS_send_goaway_after_client_migration; |
26 NET_EXPORT_PRIVATE extern bool FLAGS_quic_close_connection_out_of_order_sending; | 26 NET_EXPORT_PRIVATE extern bool FLAGS_quic_close_connection_out_of_order_sending; |
27 NET_EXPORT_PRIVATE extern bool FLAGS_reset_cubic_epoch_when_app_limited; | 27 NET_EXPORT_PRIVATE extern bool FLAGS_reset_cubic_epoch_when_app_limited; |
28 NET_EXPORT_PRIVATE extern bool FLAGS_quic_packet_queue_use_interval_set; | 28 NET_EXPORT_PRIVATE extern bool FLAGS_quic_packet_queue_use_interval_set; |
29 NET_EXPORT_PRIVATE extern bool FLAGS_shift_quic_cubic_epoch_when_app_limited; | 29 NET_EXPORT_PRIVATE extern bool FLAGS_shift_quic_cubic_epoch_when_app_limited; |
30 NET_EXPORT_PRIVATE extern bool FLAGS_allow_many_available_streams; | 30 NET_EXPORT_PRIVATE extern bool FLAGS_allow_many_available_streams; |
| 31 NET_EXPORT_PRIVATE extern bool FLAGS_quic_read_packets_full_recvmmsg; |
31 | 32 |
32 #endif // NET_QUIC_QUIC_FLAGS_H_ | 33 #endif // NET_QUIC_QUIC_FLAGS_H_ |
OLD | NEW |