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

Unified Diff: net/quic/core/quic_protocol.h

Issue 2403183002: relnote: Remove remaining now unused FEC code from QUIC. Merge internal change: 135007563 (Closed)
Patch Set: Created 4 years, 2 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 | « net/quic/core/quic_framer_test.cc ('k') | net/quic/core/quic_protocol.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_protocol.h
diff --git a/net/quic/core/quic_protocol.h b/net/quic/core/quic_protocol.h
index 1322240e847f900c99ebb33961ba62fb81dd8950..1c09a7ccdf048ec94c6e9c8d9cc5f738a262eae2 100644
--- a/net/quic/core/quic_protocol.h
+++ b/net/quic/core/quic_protocol.h
@@ -345,17 +345,8 @@ enum QuicPacketPrivateFlags {
// Bit 0: Does this packet contain an entropy bit?
PACKET_PRIVATE_FLAGS_ENTROPY = 1 << 0,
- // Bit 1: Payload is part of an FEC group?
- PACKET_PRIVATE_FLAGS_FEC_GROUP = 1 << 1,
-
- // Bit 2: Payload is FEC as opposed to frames?
- PACKET_PRIVATE_FLAGS_FEC = 1 << 2,
-
- // All bits set (bits 3-7 are not currently used): 00000111
- PACKET_PRIVATE_FLAGS_MAX = (1 << 3) - 1,
-
- // For version 32 (bits 1-7 are not used): 00000001
- PACKET_PRIVATE_FLAGS_MAX_VERSION_32 = (1 << 1) - 1
+ // (bits 1-7 are not used): 00000001
+ PACKET_PRIVATE_FLAGS_MAX = (1 << 1) - 1
};
// The available versions of QUIC. Guaranteed that the integer value of the enum
@@ -772,7 +763,6 @@ struct NET_EXPORT_PRIVATE QuicPacketHeader {
QuicPathId path_id;
bool entropy_flag;
QuicPacketEntropyHash entropy_hash;
- bool fec_flag;
};
struct NET_EXPORT_PRIVATE QuicPublicResetPacket {
« no previous file with comments | « net/quic/core/quic_framer_test.cc ('k') | net/quic/core/quic_protocol.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698