Index: net/quic/quic_protocol.h |
diff --git a/net/quic/quic_protocol.h b/net/quic/quic_protocol.h |
index 9cc6d99b2c143a2956e1199b8d72c686da8479c7..fe4e8b72105a207187e606008cd8ed0a4883b113 100644 |
--- a/net/quic/quic_protocol.h |
+++ b/net/quic/quic_protocol.h |
@@ -74,6 +74,10 @@ const QuicPacketCount kInitialCongestionWindow = 32; |
// Minimum size of initial flow control window, for both stream and session. |
const uint32 kMinimumFlowControlSendWindow = 16 * 1024; // 16 KB |
+// Maximum flow control receive window limits for connection and stream. |
+const QuicByteCount kStreamReceiveWindowLimit = 16 * 1024 * 1024; // 16 MB |
+const QuicByteCount kSessionReceiveWindowLimit = 24 * 1024 * 1024; // 24 MB |
+ |
// Minimum size of the CWND, in packets, when doing bandwidth resumption. |
const QuicPacketCount kMinCongestionWindowForBandwidthResumption = 10; |