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

Unified Diff: net/quic/congestion_control/receive_algorithm_interface.cc

Issue 283333008: Stub for BBRv2, based on TCP congestion feedback frames. (Closed) Base URL: https://chromium.googlesource.com/chromium/src
Patch Set: Created 6 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/congestion_control/send_algorithm_interface.h » ('j') | net/quic/quic_protocol.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/congestion_control/receive_algorithm_interface.cc
diff --git a/net/quic/congestion_control/receive_algorithm_interface.cc b/net/quic/congestion_control/receive_algorithm_interface.cc
index f5672f804156fe3c61fef3b9ba77a1934529e24c..aa49540cbe220acbf920a937a925a848f52f4848 100644
--- a/net/quic/congestion_control/receive_algorithm_interface.cc
+++ b/net/quic/congestion_control/receive_algorithm_interface.cc
@@ -14,6 +14,7 @@ ReceiveAlgorithmInterface* ReceiveAlgorithmInterface::Create(
CongestionFeedbackType type) {
switch (type) {
case kTCP:
+ case kTCPBBR:
Ryan Hamilton 2014/05/16 18:12:17 I think we should DFATAL (or somesuch) if kTCPBBR
ramant (doing other things) 2014/05/16 18:36:24 Done.
return new TcpReceiver();
case kInterArrival:
LOG(DFATAL) << "InterArrivalSendAlgorithm no longer supported.";
« no previous file with comments | « no previous file | net/quic/congestion_control/send_algorithm_interface.h » ('j') | net/quic/quic_protocol.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698