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

Unified Diff: net/quic/core/congestion_control/bbr_sender.h

Issue 2962033002: Add a new connection option(BBRR) to enable BBR's rate based recovery. Protected by FLAGS_quic_rel… (Closed)
Patch Set: Rebase Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/quic/core/congestion_control/bbr_sender.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/congestion_control/bbr_sender.h
diff --git a/net/quic/core/congestion_control/bbr_sender.h b/net/quic/core/congestion_control/bbr_sender.h
index 31102b7d91f33483880b73bff1009d1cdfb2cf02..8b736867d264caa8d03abdf88a129d64a01d6f73 100644
--- a/net/quic/core/congestion_control/bbr_sender.h
+++ b/net/quic/core/congestion_control/bbr_sender.h
@@ -334,6 +334,9 @@ class QUIC_EXPORT_PRIVATE BbrSender : public SendAlgorithmInterface {
std::deque<DataDelivered> recently_acked_;
QuicByteCount bytes_recently_acked_;
+ // When true, recovery is rate based rather than congestion window based.
+ bool rate_based_recovery_;
+
DISALLOW_COPY_AND_ASSIGN(BbrSender);
};
« no previous file with comments | « no previous file | net/quic/core/congestion_control/bbr_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698