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

Unified Diff: net/quic/quic_protocol.cc

Issue 421963006: Add case for PING frame in QuicFrame <<. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Add_methods_to_QuicConnectionDebug_visitor_71871881
Patch Set: Created 6 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_protocol.cc
diff --git a/net/quic/quic_protocol.cc b/net/quic/quic_protocol.cc
index 3d5d2179f8df0d192259cd16902bccc455013cef..a1975022bb09dda6d2bfeeadd851d35c844a2b19 100644
--- a/net/quic/quic_protocol.cc
+++ b/net/quic/quic_protocol.cc
@@ -443,6 +443,10 @@ ostream& operator<<(ostream& os, const QuicFrame& frame) {
os << "type { STOP_WAITING_FRAME } " << *(frame.stop_waiting_frame);
break;
}
+ case PING_FRAME: {
+ os << "type { PING_FRAME } ";
+ break;
+ }
default: {
LOG(ERROR) << "Unknown frame type: " << frame.type;
break;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698