| Index: net/tools/quic/quic_packet_printer_bin.cc
|
| diff --git a/net/tools/quic/quic_packet_printer_bin.cc b/net/tools/quic/quic_packet_printer_bin.cc
|
| index f4c28a79f7a5e8512357c12d485985f9c7bfe598..b2277291eaec57a5a2609d12396655c6811fe978 100644
|
| --- a/net/tools/quic/quic_packet_printer_bin.cc
|
| +++ b/net/tools/quic/quic_packet_printer_bin.cc
|
| @@ -105,7 +105,7 @@ class QuicPacketPrinter : public QuicFramerVisitorInterface {
|
| bool OnStreamFrame(const QuicStreamFrame& frame) override {
|
| cerr << "OnStreamFrame: " << frame;
|
| cerr << " data: { "
|
| - << QuicUtils::HexEncode(frame.frame_buffer, frame.frame_length)
|
| + << QuicUtils::HexEncode(frame.data_buffer, frame.data_length)
|
| << " }\n";
|
| return true;
|
| }
|
| @@ -118,7 +118,7 @@ class QuicPacketPrinter : public QuicFramerVisitorInterface {
|
| return true;
|
| }
|
| bool OnPaddingFrame(const QuicPaddingFrame& frame) override {
|
| - cerr << "OnPaddingFrame";
|
| + cerr << "OnPaddingFrame: " << frame;
|
| return true;
|
| }
|
| bool OnPingFrame(const QuicPingFrame& frame) override {
|
|
|