| 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 <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "net/base/net_export.h" | 10 #include "net/base/net_export.h" |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 NET_EXPORT_PRIVATE extern bool FLAGS_quic_avoid_empty_nonfin_writes; | 40 NET_EXPORT_PRIVATE extern bool FLAGS_quic_avoid_empty_nonfin_writes; |
| 41 NET_EXPORT_PRIVATE extern bool FLAGS_quic_auto_tune_receive_window; | 41 NET_EXPORT_PRIVATE extern bool FLAGS_quic_auto_tune_receive_window; |
| 42 NET_EXPORT_PRIVATE extern bool FLAGS_quic_adaptive_loss_recovery; | 42 NET_EXPORT_PRIVATE extern bool FLAGS_quic_adaptive_loss_recovery; |
| 43 NET_EXPORT_PRIVATE extern bool FLAGS_quic_enable_autotune_by_default; | 43 NET_EXPORT_PRIVATE extern bool FLAGS_quic_enable_autotune_by_default; |
| 44 NET_EXPORT_PRIVATE extern bool FLAGS_quic_loss_recovery_use_largest_acked; | 44 NET_EXPORT_PRIVATE extern bool FLAGS_quic_loss_recovery_use_largest_acked; |
| 45 NET_EXPORT_PRIVATE extern bool FLAGS_quic_only_one_sending_alarm; | 45 NET_EXPORT_PRIVATE extern bool FLAGS_quic_only_one_sending_alarm; |
| 46 NET_EXPORT_PRIVATE extern bool FLAGS_quic_use_hash_in_scup; | 46 NET_EXPORT_PRIVATE extern bool FLAGS_quic_use_hash_in_scup; |
| 47 NET_EXPORT_PRIVATE extern bool FLAGS_quic_detect_memory_corrpution; | 47 NET_EXPORT_PRIVATE extern bool FLAGS_quic_detect_memory_corrpution; |
| 48 NET_EXPORT_PRIVATE extern bool FLAGS_quic_use_old_public_reset_packets; | 48 NET_EXPORT_PRIVATE extern bool FLAGS_quic_use_old_public_reset_packets; |
| 49 NET_EXPORT_PRIVATE extern bool FLAGS_quic_ignore_srbf; | 49 NET_EXPORT_PRIVATE extern bool FLAGS_quic_ignore_srbf; |
| 50 NET_EXPORT_PRIVATE extern bool FLAGS_quic_allow_noprr; |
| 50 | 51 |
| 51 #endif // NET_QUIC_QUIC_FLAGS_H_ | 52 #endif // NET_QUIC_QUIC_FLAGS_H_ |
| OLD | NEW |