| 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 0b1c995bcfba3e6036d1edaf8912274177d60cee..03047cf877b99210214099970535885fad569f7a 100644
|
| --- a/net/quic/congestion_control/tcp_loss_algorithm.h
|
| +++ b/net/quic/congestion_control/tcp_loss_algorithm.h
|
| @@ -20,6 +20,9 @@ namespace net {
|
| // been received for a packet. Also implements TCP's early retransmit(RFC5827).
|
| class NET_EXPORT_PRIVATE TCPLossAlgorithm : public LossDetectionInterface {
|
| public:
|
| + // TCP retransmits after 3 nacks.
|
| + static const size_t kNumberOfNacksBeforeRetransmission = 3;
|
| +
|
| TCPLossAlgorithm();
|
| ~TCPLossAlgorithm() override {}
|
|
|
|
|