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

Unified Diff: net/quic/congestion_control/tcp_cubic_sender_packets.h

Issue 1918953003: Landing Recent QUIC changes until 4/22/2016 14:55 UTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Deleted SpdyFramerTests missed while mergeing 120451808 Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: net/quic/congestion_control/tcp_cubic_sender_packets.h
diff --git a/net/quic/congestion_control/tcp_cubic_sender_packets.h b/net/quic/congestion_control/tcp_cubic_sender_packets.h
index 5a89df836752f1a70830bd4532eb3261cf8b7c92..610e75e12b2d9f5fa2074e2fa3b5d466d67d0dfc 100644
--- a/net/quic/congestion_control/tcp_cubic_sender_packets.h
+++ b/net/quic/congestion_control/tcp_cubic_sender_packets.h
@@ -49,6 +49,8 @@ class NET_EXPORT_PRIVATE TcpCubicSenderPackets : public TcpCubicSenderBase {
CongestionControlType GetCongestionControlType() const override;
// End implementation of SendAlgorithmInterface.
+ QuicByteCount min_congestion_window() const { return min_congestion_window_; }
+
protected:
// TcpCubicSenderBase methods
void SetCongestionWindowFromBandwidthAndRtt(QuicBandwidth bandwidth,
@@ -93,6 +95,9 @@ class NET_EXPORT_PRIVATE TcpCubicSenderPackets : public TcpCubicSenderBase {
// this algorithm is created.
const QuicPacketCount initial_max_tcp_congestion_window_;
+ // The minimum window when exiting slow start with large reduction.
+ QuicPacketCount min_slow_start_exit_window_;
+
DISALLOW_COPY_AND_ASSIGN(TcpCubicSenderPackets);
};
« no previous file with comments | « net/quic/congestion_control/tcp_cubic_sender_bytes_test.cc ('k') | net/quic/congestion_control/tcp_cubic_sender_packets.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698