diff options
Diffstat (limited to 'net/quic/quic_connection.h')
-rw-r--r-- | net/quic/quic_connection.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/net/quic/quic_connection.h b/net/quic/quic_connection.h index 7afe3ea..2f20351 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_; |