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

Unified Diff: net/quic/quic_protocol.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
Index: net/quic/quic_protocol.cc
diff --git a/net/quic/quic_protocol.cc b/net/quic/quic_protocol.cc
index 32c5c31fda3581d673046ea8acc8ed36e4bae692..24489b5f7f1575c97b198e94266a16e75c72aed3 100644
--- a/net/quic/quic_protocol.cc
+++ b/net/quic/quic_protocol.cc
@@ -520,7 +520,8 @@ ostream& operator<<(ostream& os,
<< congestion_frame.fix_rate.bitrate.ToBytesPerSecond();
break;
}
- case kTCP: {
+ case kTCP:
+ case kTCPBBR: {
Ryan Hamilton 2014/05/16 18:12:17 I think I'd also DFATAL here.
ramant (doing other things) 2014/05/16 18:36:24 Done.
const CongestionFeedbackMessageTCP& tcp = congestion_frame.tcp;
os << " receive_window: " << tcp.receive_window;
break;
« net/quic/congestion_control/receive_algorithm_interface.cc ('K') | « net/quic/quic_protocol.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698