Skip to content

Commit 6f644ac

Browse files
authored
Update draft-ietf-quic-recovery.md
1 parent ddcf6d9 commit 6f644ac

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

draft-ietf-quic-recovery.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -714,11 +714,8 @@ Pseudocode for SetLossDetectionAlarm follows:
714714
alarm_duration = loss_time - time_of_last_sent_packet
715715
else if (tlp_count < kMaxTLPs):
716716
// Tail Loss Probe
717-
if (num_retransmittable_packets_outstanding == 1):
718-
alarm_duration = 1.5 * smoothed_rtt + max_ack_delay
719-
else:
720-
alarm_duration = kMinTLPTimeout
721-
alarm_duration = max(alarm_duration, 2 * smoothed_rtt)
717+
alarm_duration = max(1.5 * smoothed_rtt + max_ack_delay,
718+
kMinTLPTimeout)
722719
else:
723720
// RTO alarm
724721
alarm_duration = smoothed_rtt + 4 * rttvar

0 commit comments

Comments
 (0)