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

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

Issue 839143002: Roll Chrome into Mojo. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Rebase Created 5 years, 11 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/quic_packet_generator_test.cc ('k') | net/quic/quic_sent_packet_manager.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_PROTOCOL_H_ 5 #ifndef NET_QUIC_QUIC_PROTOCOL_H_
6 #define NET_QUIC_QUIC_PROTOCOL_H_ 6 #define NET_QUIC_QUIC_PROTOCOL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <limits> 9 #include <limits>
10 #include <list> 10 #include <list>
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 // max packet size is 1500 bytes, 1500 - 48 = 1452. 57 // max packet size is 1500 bytes, 1500 - 48 = 1452.
58 const QuicByteCount kMaxPacketSize = 1452; 58 const QuicByteCount kMaxPacketSize = 1452;
59 // Default maximum packet size used in Linux TCP implementations. 59 // Default maximum packet size used in Linux TCP implementations.
60 const QuicByteCount kDefaultTCPMSS = 1460; 60 const QuicByteCount kDefaultTCPMSS = 1460;
61 61
62 // We match SPDY's use of 32 when secure (since we'd compete with SPDY). 62 // We match SPDY's use of 32 when secure (since we'd compete with SPDY).
63 const QuicPacketCount kInitialCongestionWindowSecure = 32; 63 const QuicPacketCount kInitialCongestionWindowSecure = 32;
64 // Be conservative, and just use double a typical TCP ICWND for HTTP. 64 // Be conservative, and just use double a typical TCP ICWND for HTTP.
65 const QuicPacketCount kInitialCongestionWindowInsecure = 20; 65 const QuicPacketCount kInitialCongestionWindowInsecure = 20;
66 66
67 // Default size of initial flow control window, for both stream and session. 67 // Minimum size of initial flow control window, for both stream and session.
68 const uint32 kDefaultFlowControlSendWindow = 16 * 1024; // 16 KB 68 const uint32 kMinimumFlowControlSendWindow = 16 * 1024; // 16 KB
69 69
70 // Minimum size of the CWND, in packets, when doing bandwidth resumption. 70 // Minimum size of the CWND, in packets, when doing bandwidth resumption.
71 const QuicPacketCount kMinCongestionWindowForBandwidthResumption = 10; 71 const QuicPacketCount kMinCongestionWindowForBandwidthResumption = 10;
72 72
73 // Maximum size of the CWND, in packets, for TCP congestion control algorithms. 73 // Maximum size of the CWND, in packets, for TCP congestion control algorithms.
74 const QuicPacketCount kMaxTcpCongestionWindow = 200; 74 const QuicPacketCount kMaxTcpCongestionWindow = 200;
75 75
76 // Default size of the socket receive buffer in bytes. 76 // Default size of the socket receive buffer in bytes.
77 const QuicByteCount kDefaultSocketReceiveBuffer = 256 * 1024; 77 const QuicByteCount kDefaultSocketReceiveBuffer = 256 * 1024;
78 // Minimum size of the socket receive buffer in bytes. 78 // Minimum size of the socket receive buffer in bytes.
(...skipping 1020 matching lines...) Expand 10 before | Expand all | Expand 10 after
1099 bool in_flight; 1099 bool in_flight;
1100 // True if the packet can never be acked, so it can be removed. 1100 // True if the packet can never be acked, so it can be removed.
1101 bool is_unackable; 1101 bool is_unackable;
1102 // True if the packet is an FEC packet. 1102 // True if the packet is an FEC packet.
1103 bool is_fec_packet; 1103 bool is_fec_packet;
1104 }; 1104 };
1105 1105
1106 } // namespace net 1106 } // namespace net
1107 1107
1108 #endif // NET_QUIC_QUIC_PROTOCOL_H_ 1108 #endif // NET_QUIC_QUIC_PROTOCOL_H_
OLDNEW
« no previous file with comments | « net/quic/quic_packet_generator_test.cc ('k') | net/quic/quic_sent_packet_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698