| 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_QUIC_CONFIG_H_ | 5 #ifndef NET_QUIC_QUIC_CONFIG_H_ |
| 6 #define NET_QUIC_QUIC_CONFIG_H_ | 6 #define NET_QUIC_QUIC_CONFIG_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 QuicFixedUint32 bytes_for_connection_id_; | 377 QuicFixedUint32 bytes_for_connection_id_; |
| 378 // Initial round trip time estimate in microseconds. | 378 // Initial round trip time estimate in microseconds. |
| 379 QuicFixedUint32 initial_round_trip_time_us_; | 379 QuicFixedUint32 initial_round_trip_time_us_; |
| 380 | 380 |
| 381 // Initial stream flow control receive window in bytes. | 381 // Initial stream flow control receive window in bytes. |
| 382 QuicFixedUint32 initial_stream_flow_control_window_bytes_; | 382 QuicFixedUint32 initial_stream_flow_control_window_bytes_; |
| 383 // Initial session flow control receive window in bytes. | 383 // Initial session flow control receive window in bytes. |
| 384 QuicFixedUint32 initial_session_flow_control_window_bytes_; | 384 QuicFixedUint32 initial_session_flow_control_window_bytes_; |
| 385 | 385 |
| 386 // Socket receive buffer in bytes. | 386 // Socket receive buffer in bytes. |
| 387 // TODO(ianswett): Deprecate once QUIC_VERSION_34 is deprecated. |
| 387 QuicFixedUint32 socket_receive_buffer_; | 388 QuicFixedUint32 socket_receive_buffer_; |
| 388 | 389 |
| 389 // Whether to support multipath for this connection. | 390 // Whether to support multipath for this connection. |
| 390 QuicNegotiableUint32 multipath_enabled_; | 391 QuicNegotiableUint32 multipath_enabled_; |
| 391 | 392 |
| 392 // Whether tell peer not to attempt connection migration. | 393 // Whether tell peer not to attempt connection migration. |
| 393 QuicFixedUint32 connection_migration_disabled_; | 394 QuicFixedUint32 connection_migration_disabled_; |
| 394 }; | 395 }; |
| 395 | 396 |
| 396 } // namespace net | 397 } // namespace net |
| 397 | 398 |
| 398 #endif // NET_QUIC_QUIC_CONFIG_H_ | 399 #endif // NET_QUIC_QUIC_CONFIG_H_ |
| OLD | NEW |