Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_CORE_QUIC_CONFIG_H_ | 5 #ifndef NET_QUIC_CORE_QUIC_CONFIG_H_ |
| 6 #define NET_QUIC_CORE_QUIC_CONFIG_H_ | 6 #define NET_QUIC_CORE_QUIC_CONFIG_H_ |
| 7 | 7 |
| 8 #include <cstddef> | 8 #include <cstddef> |
| 9 #include <cstdint> | 9 #include <cstdint> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 428 QuicFixedUint32 connection_migration_disabled_; | 428 QuicFixedUint32 connection_migration_disabled_; |
| 429 | 429 |
| 430 // An alternate server address the client could connect to. | 430 // An alternate server address the client could connect to. |
| 431 QuicFixedSocketAddress alternate_server_address_; | 431 QuicFixedSocketAddress alternate_server_address_; |
| 432 | 432 |
| 433 // Force HOL blocking for measurement purposes. | 433 // Force HOL blocking for measurement purposes. |
| 434 QuicFixedUint32 force_hol_blocking_; | 434 QuicFixedUint32 force_hol_blocking_; |
| 435 | 435 |
| 436 // Whether support HTTP/2 SETTINGS_MAX_HEADER_LIST_SIZE SETTINGS frame. | 436 // Whether support HTTP/2 SETTINGS_MAX_HEADER_LIST_SIZE SETTINGS frame. |
| 437 QuicFixedUint32 support_max_header_list_size_; | 437 QuicFixedUint32 support_max_header_list_size_; |
| 438 | |
| 439 // Latched copy of gfe2_reloadable_flag_quic_no_socket_receive_buffer. | |
|
Ryan Hamilton
2017/03/10 05:37:44
I'm surprised the script didn't fix this. Can you
| |
| 440 bool latched_no_socket_receive_buffer_; | |
| 438 }; | 441 }; |
| 439 | 442 |
| 440 } // namespace net | 443 } // namespace net |
| 441 | 444 |
| 442 #endif // NET_QUIC_CORE_QUIC_CONFIG_H_ | 445 #endif // NET_QUIC_CORE_QUIC_CONFIG_H_ |
| OLD | NEW |