Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Side by Side Diff: net/quic/quic_config.h

Issue 2005853002: Ignore the peer's receive buffer in QUIC and instead set the max CWND to 2000 packets. Protected b… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@122420070
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/quic/congestion_control/tcp_cubic_sender_packets_test.cc ('k') | net/quic/quic_flags.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « net/quic/congestion_control/tcp_cubic_sender_packets_test.cc ('k') | net/quic/quic_flags.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698