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

Unified Diff: net/quic/quic_protocol.h

Issue 1431693002: Change QuicAckFrame's revived_packets to be a single QuicPacketNumber. QUIC now ignores all but the… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@106724344
Patch Set: Created 5 years, 1 month 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/quic_framer_test.cc ('k') | net/quic/quic_protocol.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_protocol.h
diff --git a/net/quic/quic_protocol.h b/net/quic/quic_protocol.h
index 91ab6c28dc5ff285ed57e11c92db284d56451698..70088c7fa9cc3db97d55294cff5c4bf55ad91015 100644
--- a/net/quic/quic_protocol.h
+++ b/net/quic/quic_protocol.h
@@ -867,9 +867,9 @@ struct NET_EXPORT_PRIVATE QuicAckFrame {
// The set of packets which we're expecting and have not received.
PacketNumberQueue missing_packets;
- // Packets which have been revived via FEC.
- // All of these must also be in missing_packets.
- PacketNumberSet revived_packets;
+ // Packet most recently revived via FEC, 0 if no packet was revived by FEC.
+ // If non-zero, must be present in missing_packets.
+ QuicPacketNumber latest_revived_packet;
};
// True if the packet number is greater than largest_observed or is listed
« no previous file with comments | « net/quic/quic_framer_test.cc ('k') | net/quic/quic_protocol.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698