Skip to content

Commit

Permalink
Update draft-ietf-quic-recovery.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ianswett committed Dec 5, 2017
1 parent ddcf6d9 commit 6f644ac
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions draft-ietf-quic-recovery.md
Original file line number Diff line number Diff line change
Expand Up @@ -714,11 +714,8 @@ Pseudocode for SetLossDetectionAlarm follows:
alarm_duration = loss_time - time_of_last_sent_packet
else if (tlp_count < kMaxTLPs):
// Tail Loss Probe
if (num_retransmittable_packets_outstanding == 1):
alarm_duration = 1.5 * smoothed_rtt + max_ack_delay
else:
alarm_duration = kMinTLPTimeout
alarm_duration = max(alarm_duration, 2 * smoothed_rtt)
alarm_duration = max(1.5 * smoothed_rtt + max_ack_delay,
kMinTLPTimeout)
else:
// RTO alarm
alarm_duration = smoothed_rtt + 4 * rttvar
Expand Down

0 comments on commit 6f644ac

Please sign in to comment.