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

Unified Diff: net/quic/quic_connection_logger.cc

Issue 283333008: Stub for BBRv2, based on TCP congestion feedback frames. (Closed) Base URL: https://chromium.googlesource.com/chromium/src
Patch Set: Implemented rch's comments 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 | « net/quic/congestion_control/tcp_cubic_sender.h ('k') | net/quic/quic_protocol.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_connection_logger.cc
diff --git a/net/quic/quic_connection_logger.cc b/net/quic/quic_connection_logger.cc
index 477cc7e21042ece2309f73163bb709d5a07f746c..3dd13e8973ec080d569df483b225236d6a9afa5a 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;
« no previous file with comments | « net/quic/congestion_control/tcp_cubic_sender.h ('k') | net/quic/quic_protocol.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698