| Index: net/quic/congestion_control/send_algorithm_interface.h
|
| diff --git a/net/quic/congestion_control/send_algorithm_interface.h b/net/quic/congestion_control/send_algorithm_interface.h
|
| index f2c4e7b5e11e94378a75e2b5ee39c55790eb1cea..440201c0bf4af4c892502506be72e24ac8bf467e 100644
|
| --- a/net/quic/congestion_control/send_algorithm_interface.h
|
| +++ b/net/quic/congestion_control/send_algorithm_interface.h
|
| @@ -77,6 +77,11 @@ class NET_EXPORT_PRIVATE SendAlgorithmInterface {
|
|
|
| // TODO(satyamshekhar): Monitor MinRtt.
|
| virtual QuicTime::Delta SmoothedRtt() = 0;
|
| +
|
| + // Get the send algorithm specific retransmission delay, called RTO in TCP,
|
| + // Note 1: the caller is responsible for sanity checking this value.
|
| + // Note 2: this will return zero if we don't have enough data for an estimate.
|
| + virtual QuicTime::Delta RetransmissionDelay() = 0;
|
| };
|
|
|
| } // namespace net
|
|
|