@@ -305,7 +305,7 @@ conditions:
305
305
* If RTO ({{rto}}) is earlier, schedule a TLP alarm in its place. That is,
306
306
PTO SHOULD be scheduled for min(RTO, PTO).
307
307
308
- MaxAckDelay is the maximum ack delay supplied in an incoming ack frame.
308
+ MaxAckDelay is the maximum ack delay supplied in an incoming ACK frame.
309
309
MaxAckDelay excludes ack delays that aren't included in an RTT sample because
310
310
they're too large and excludes those which reference an ack-only packet.
311
311
@@ -372,9 +372,10 @@ when there's a prolonged period of network silence, which could be caused by a
372
372
change in the underlying network RTT.
373
373
374
374
QUIC also diverges from TCP by including MaxAckDelay in the RTO period. QUIC is
375
- able to explicitly model the ack delay via the ack delay field in the ack frame.
376
- Since QUIC corrects for this delay in its SRTT and RTTVAR computations, it is
377
- necessary to add this delay explicitly in the RTO computation.
375
+ able to explicitly model delay at the receiver via the ack delay field in the
376
+ ACK frame. Since QUIC corrects for this delay in its SRTT and RTTVAR
377
+ computations, it is necessary to add this delay explicitly in the TLP and RTO
378
+ computation.
378
379
379
380
When an acknowledgment is received for a packet sent on an RTO event, any
380
381
unacknowledged packets with lower packet numbers than those acknowledged MUST be
@@ -486,7 +487,7 @@ largest_sent_packet:
486
487
: The packet number of the most recently sent packet.
487
488
488
489
largest_acked_packet :
489
- : The largest packet number acknowledged in an ack frame.
490
+ : The largest packet number acknowledged in an ACK frame.
490
491
491
492
latest_rtt :
492
493
: The most recent RTT measurement made when receiving an ack for
@@ -503,7 +504,7 @@ min_rtt:
503
504
: The minimum RTT seen in the connection, ignoring ack delay.
504
505
505
506
max_ack_delay :
506
- : The maximum ack delay in an incoming ack frame for this connection.
507
+ : The maximum ack delay in an incoming ACK frame for this connection.
507
508
Excludes ack delays for ack only packets and those that create an
508
509
RTT sample less than min_rtt.
509
510
@@ -914,7 +915,7 @@ bytes_in_flight:
914
915
: The sum of the size in bytes of all sent packets that contain at least
915
916
one retransmittable or PADDING frame, and have not been acked or
916
917
declared lost. The size does not include IP or UDP overhead.
917
- Packets only containing ack frames do not count towards byte_in_flight
918
+ Packets only containing ACK frames do not count towards byte_in_flight
918
919
to ensure congestion control does not impede congestion feedback.
919
920
920
921
congestion_window :
0 commit comments