| 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;
|
|
|