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

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

Issue 2388153005: Record a QUIC packet as received once it's been decrypted, instead of waiting for it to be fully pr… (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 | « no previous file | net/quic/core/quic_connection.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_connection.h
diff --git a/net/quic/core/quic_connection.h b/net/quic/core/quic_connection.h
index 497ebd175109139e34a02962f5a360bd34d40035..2294017a0b31e2c53127d80fe99c2dc1a06982f6 100644
--- a/net/quic/core/quic_connection.h
+++ b/net/quic/core/quic_connection.h
@@ -909,8 +909,12 @@ class NET_EXPORT_PRIVATE QuicConnection
// parsed or nullptr.
EncryptionLevel last_decrypted_packet_level_;
QuicPacketHeader last_header_;
+ // TODO(ianswett): Remove last_stop_waiting_frame_ once
+ // gfe2_reloadable_flag_quic_receive_packet_once_decrypted is deprecated.
Ryan Hamilton 2016/10/06 02:16:17 nit: can you fix the flag name (in the final CL is
QuicStopWaitingFrame last_stop_waiting_frame_;
bool should_last_packet_instigate_acks_;
+ // Whether the most recent packet was missing before it was received.
+ bool was_last_packet_missing_;
// Track some peer state so we can do less bookkeeping
// Largest sequence sent by the peer which had an ack frame (latest ack info).
« no previous file with comments | « no previous file | net/quic/core/quic_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698