diff options
Diffstat (limited to 'net/quic/quic_connection_logger.cc')
| -rw-r--r-- | net/quic/quic_connection_logger.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/quic/quic_connection_logger.cc b/net/quic/quic_connection_logger.cc index 477cc7e..3dd13e8 100644 --- a/net/quic/quic_connection_logger.cc +++ b/net/quic/quic_connection_logger.cc @@ -150,6 +150,10 @@ base::Value* NetLogQuicCongestionFeedbackFrameCallback( dict->SetString("type", "TCP"); dict->SetInteger("receive_window", frame->tcp.receive_window); break; + case kTCPBBR: + dict->SetString("type", "TCPBBR"); + // TODO(rtenneti): Add support for BBR. + break; } return dict; |
