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

Unified Diff: net/quic/quic_protocol.cc

Issue 288313003: Land Recent QUIC Changes. (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
Index: net/quic/quic_protocol.cc
diff --git a/net/quic/quic_protocol.cc b/net/quic/quic_protocol.cc
index 32c5c31fda3581d673046ea8acc8ed36e4bae692..0f92e457eb948954ff551cefb4c799d764a053bc 100644
--- a/net/quic/quic_protocol.cc
+++ b/net/quic/quic_protocol.cc
@@ -525,6 +525,10 @@ ostream& operator<<(ostream& os,
os << " receive_window: " << tcp.receive_window;
break;
}
+ case kTCPBBR: {
+ LOG(DFATAL) << "TCPBBR is not yet supported.";
+ break;
+ }
}
return os;
}

Powered by Google App Engine
This is Rietveld 408576698