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

Unified Diff: net/quic/congestion_control/tcp_loss_algorithm.h

Issue 182083002: Implement an early retransmit timer in QUIC's TcpLossAlgorithm to (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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/congestion_control/tcp_loss_algorithm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/congestion_control/tcp_loss_algorithm.h
diff --git a/net/quic/congestion_control/tcp_loss_algorithm.h b/net/quic/congestion_control/tcp_loss_algorithm.h
index a542daa4d96792d36405646023b416620e7db221..67bb2b7604d90ca7f59997b861167036f3ea5b4e 100644
--- a/net/quic/congestion_control/tcp_loss_algorithm.h
+++ b/net/quic/congestion_control/tcp_loss_algorithm.h
@@ -31,8 +31,11 @@ class NET_EXPORT_PRIVATE TCPLossAlgorithm : public LossDetectionInterface {
QuicTime::Delta srtt,
QuicTime::Delta latest_rtt) OVERRIDE;
- // Return QuicTime::Zero.
+ // Returns a non-zero value when the early retransmit timer is active.
virtual QuicTime GetLossTimeout() const OVERRIDE;
+
+ private:
+ QuicTime loss_detection_timeout_;
};
} // namespace net
« no previous file with comments | « no previous file | net/quic/congestion_control/tcp_loss_algorithm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698