summaryrefslogtreecommitdiffstats
path: root/net/quic/congestion_control/send_algorithm_interface.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/quic/congestion_control/send_algorithm_interface.cc')
-rw-r--r--net/quic/congestion_control/send_algorithm_interface.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/net/quic/congestion_control/send_algorithm_interface.cc b/net/quic/congestion_control/send_algorithm_interface.cc
index e5c3329..58b92bc 100644
--- a/net/quic/congestion_control/send_algorithm_interface.cc
+++ b/net/quic/congestion_control/send_algorithm_interface.cc
@@ -29,6 +29,9 @@ SendAlgorithmInterface* SendAlgorithmInterface::Create(
return NULL;
case kFixRate:
return new FixRateSender(rtt_stats);
+ case kTCPBBR:
+ LOG(DFATAL) << "BbrTcpSender is not supported.";
+ return NULL;
}
return NULL;
}