Skip to content

Commit

Permalink
Make all TCP references informative
Browse files Browse the repository at this point in the history
  • Loading branch information
ianswett committed Mar 8, 2017
1 parent 1a66370 commit c53188d
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions draft-ietf-quic-recovery.md
Expand Up @@ -378,9 +378,10 @@ in response to 0RTT packets.

### Tail Loss Probe and Retransmission Timeout

Tail loss probes and retransmission timeouts{{!RFC6298}} are an alarm based
mechanism to recover from cases when there are outstanding retransmittable
packets, but an acknowledgement has not been received in a timely manner.
Tail loss probes {{?I-D.dukkipati-tcpm-tcp-loss-probe}} and retransmission
timeouts{{?RFC6298}} are an alarm based mechanism to recover from cases when
there are outstanding retransmittable packets, but an acknowledgement has
not been received in a timely manner.

### Pseudocode

Expand All @@ -401,7 +402,7 @@ Pseudocode for SetLossDetectionAlarm follows:
alarm_duration = max(alarm_duration, kMinTLPTimeout)
alarm_duration = alarm_duration << handshake_count
else if (largest sent packet is acked):
// Early retransmit {{!RFC5827}}
// Early retransmit {{?RFC5827}}
// with an alarm to reduce spurious retransmits.
alarm_duration = 0.25 * smoothed_rtt
else if (tlp_count < kMaxTLPs):
Expand Down Expand Up @@ -491,12 +492,12 @@ Pseudocode for DetectLostPackets follows:

# Congestion Control

(describe NewReno-style congestion control {{!RFC6582}} for QUIC.)
(describe NewReno-style congestion control {{?RFC6582}} for QUIC.)
(describe appropriate byte counting.)
(define recovery based on packet numbers.)
(describe min_rtt based hystart.)
(describe how QUIC's F-RTO {{!RFC5682}} delays reducing CWND.)
(describe PRR {{!RFC6937}})
(describe how QUIC's F-RTO {{?RFC5682}} delays reducing CWND.)
(describe PRR {{?RFC6937}})


# IANA Considerations
Expand Down

0 comments on commit c53188d

Please sign in to comment.