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

Unified Diff: net/quic/core/congestion_control/send_algorithm_interface.cc

Issue 2882503002: Add relevant tags for PCC Congestion control (Closed)
Patch Set: Created 3 years, 7 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/crypto/crypto_protocol.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/congestion_control/send_algorithm_interface.cc
diff --git a/net/quic/core/congestion_control/send_algorithm_interface.cc b/net/quic/core/congestion_control/send_algorithm_interface.cc
index b9bb452a4b5c5f940321d16a6ab9e7c5bc0a12d3..75bf7441ab2dae9ac63bad6e5d40f0544516837b 100644
--- a/net/quic/core/congestion_control/send_algorithm_interface.cc
+++ b/net/quic/core/congestion_control/send_algorithm_interface.cc
@@ -32,8 +32,11 @@ SendAlgorithmInterface* SendAlgorithmInterface::Create(
initial_congestion_window, max_congestion_window,
random);
}
-
// Fall back to CUBIC if BBR is disabled.
+ // FALLTHROUGH_INTENDED
+ case kPCC:
+ // Fall back to CUBIC if no PCC implementation.
+ // FALLTHROUGH_INTENDED
case kCubic:
return new TcpCubicSenderPackets(
clock, rtt_stats, false /* don't use Reno */,
« no previous file with comments | « no previous file | net/quic/core/crypto/crypto_protocol.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698