We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddcf6d9 commit 6f644acCopy full SHA for 6f644ac
draft-ietf-quic-recovery.md
@@ -714,11 +714,8 @@ Pseudocode for SetLossDetectionAlarm follows:
714
alarm_duration = loss_time - time_of_last_sent_packet
715
else if (tlp_count < kMaxTLPs):
716
// 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)
+ alarm_duration = max(1.5 * smoothed_rtt + max_ack_delay,
+ kMinTLPTimeout)
722
else:
723
// RTO alarm
724
alarm_duration = smoothed_rtt + 4 * rttvar
0 commit comments