| Index: net/quic/core/quic_protocol.cc
|
| diff --git a/net/quic/core/quic_protocol.cc b/net/quic/core/quic_protocol.cc
|
| index 7c99b8e26f971f6a6fa0169f1075e8187ff50e5f..34f40ec86a5a3c40e4c643e7d667bfddd6567899 100644
|
| --- a/net/quic/core/quic_protocol.cc
|
| +++ b/net/quic/core/quic_protocol.cc
|
| @@ -78,16 +78,14 @@ QuicPacketHeader::QuicPacketHeader()
|
| : packet_number(0),
|
| path_id(kDefaultPathId),
|
| entropy_flag(false),
|
| - entropy_hash(0),
|
| - fec_flag(false) {}
|
| + entropy_hash(0) {}
|
|
|
| QuicPacketHeader::QuicPacketHeader(const QuicPacketPublicHeader& header)
|
| : public_header(header),
|
| packet_number(0),
|
| path_id(kDefaultPathId),
|
| entropy_flag(false),
|
| - entropy_hash(0),
|
| - fec_flag(false) {}
|
| + entropy_hash(0) {}
|
|
|
| QuicPacketHeader::QuicPacketHeader(const QuicPacketHeader& other) = default;
|
|
|
| @@ -304,8 +302,7 @@ ostream& operator<<(ostream& os, const QuicPacketHeader& header) {
|
| << QuicUtils::HexEncode(StringPiece(header.public_header.nonce->data(),
|
| header.public_header.nonce->size()));
|
| }
|
| - os << ", fec_flag: " << header.fec_flag
|
| - << ", entropy_flag: " << header.entropy_flag
|
| + os << ", entropy_flag: " << header.entropy_flag
|
| << ", entropy hash: " << static_cast<int>(header.entropy_hash)
|
| << ", path_id: " << static_cast<int>(header.path_id)
|
| << ", packet_number: " << header.packet_number << " }\n";
|
|
|