blob: 70198d6fe5f1b5a4123b48dd1f140fa395d267a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/quic/congestion_control/tcp_loss_algorithm.h"
#include "net/quic/congestion_control/rtt_stats.h"
#include "net/quic/quic_protocol.h"
namespace net {
namespace {
// TCP retransmits after 3 nacks.
static const size_t kNumberOfNacksBeforeRetransmission = 3;
// How many RTTs the algorithm waits before determining a packet is lost due
// to early retransmission.
static const double kEarlyRetransmitLossDelayMultiplier = 1.25;
}
TCPLossAlgorithm::TCPLossAlgorithm()
: loss_detection_timeout_(QuicTime::Zero()) { }
LossDetectionType TCPLossAlgorithm::GetLossDetectionType() const {
return kNack;
}
// Uses nack counts to decide when packets are lost.
SequenceNumberSet TCPLossAlgorithm::DetectLostPackets(
const QuicUnackedPacketMap& unacked_packets,
const QuicTime& time,
QuicPacketSequenceNumber largest_observed,
const RttStats& rtt_stats) {
SequenceNumberSet lost_packets;
loss_detection_timeout_ = QuicTime::Zero();
QuicTime::Delta loss_delay =
rtt_stats.SmoothedRtt().Multiply(kEarlyRetransmitLossDelayMultiplier);
for (QuicUnackedPacketMap::const_iterator it = unacked_packets.begin();
it != unacked_packets.end() && it->first <= largest_observed; ++it) {
if (!it->second.pending) {
continue;
}
LOG_IF(DFATAL, it->second.nack_count == 0)
<< "All packets less than largest observed should have been nacked.";
if (it->second.nack_count >= kNumberOfNacksBeforeRetransmission) {
lost_packets.insert(it->first);
continue;
}
// Only early retransmit(RFC5827) when the last packet gets acked and
// there are pending retransmittable packets.
// This also implements a timer-protected variant of FACK.
if (it->second.retransmittable_frames &&
unacked_packets.largest_sent_packet() == largest_observed) {
// Early retransmit marks the packet as lost once 1.25RTTs have passed
// since the packet was sent and otherwise sets an alarm.
if (time >= it->second.sent_time.Add(loss_delay)) {
lost_packets.insert(it->first);
} else {
// Set the timeout for the earliest retransmittable packet where early
// retransmit applies.
loss_detection_timeout_ = it->second.sent_time.Add(loss_delay);
break;
}
}
}
return lost_packets;
}
QuicTime TCPLossAlgorithm::GetLossTimeout() const {
return loss_detection_timeout_;
}
} // namespace net
|