Index: net/quic/quic_connection.h |
diff --git a/net/quic/quic_connection.h b/net/quic/quic_connection.h |
index 7afe3ea5a65fdfa696c7a10b5353cf5e78824027..2f20351f410edf8d852bf276eab5ab7b1a8d8e7b 100644 |
--- a/net/quic/quic_connection.h |
+++ b/net/quic/quic_connection.h |
@@ -722,6 +722,9 @@ class NET_EXPORT_PRIVATE QuicConnection |
// An alarm that is scheduled when the sent scheduler requires a |
// a delay before sending packets and fires when the packet may be sent. |
scoped_ptr<QuicAlarm> send_alarm_; |
+ // An alarm that is scheduled when the connection can still write and there |
+ // may be more data to send. |
+ scoped_ptr<QuicAlarm> resume_writes_alarm_; |
// An alarm that fires when the connection may have timed out. |
scoped_ptr<QuicAlarm> timeout_alarm_; |
@@ -747,6 +750,11 @@ class NET_EXPORT_PRIVATE QuicConnection |
// The time that we last sent a packet for this connection. |
QuicTime time_of_last_sent_packet_; |
+ // Sequence number of the last packet guaranteed to be sent in packet sequence |
+ // number order. Not set when packets are queued, since that may cause |
+ // re-ordering. |
+ QuicPacketSequenceNumber sequence_number_of_last_inorder_packet_; |
+ |
// Congestion manager which controls the rate the connection sends packets |
// as well as collecting and generating congestion feedback. |
QuicCongestionManager congestion_manager_; |