diff options
Diffstat (limited to 'net/quic/congestion_control/receive_algorithm_interface.cc')
| -rw-r--r-- | net/quic/congestion_control/receive_algorithm_interface.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/quic/congestion_control/receive_algorithm_interface.cc b/net/quic/congestion_control/receive_algorithm_interface.cc index f5672f8..5384bdc 100644 --- a/net/quic/congestion_control/receive_algorithm_interface.cc +++ b/net/quic/congestion_control/receive_algorithm_interface.cc @@ -15,6 +15,9 @@ ReceiveAlgorithmInterface* ReceiveAlgorithmInterface::Create( switch (type) { case kTCP: return new TcpReceiver(); + case kTCPBBR: + LOG(DFATAL) << "TCPBBR is not yet supported."; + return NULL; case kInterArrival: LOG(DFATAL) << "InterArrivalSendAlgorithm no longer supported."; return NULL; |
