@@ -108,7 +108,7 @@ of frames contained in a packet affect recovery and congestion control logic:
108
108
* All packets are acknowledged, though packets that contain only ACK,
109
109
ACK_ECN, and PADDING frames are not acknowledged immediately. Packets
110
110
containing at least one frame besides ACK, ACK_ECN, and PADDING are referred
111
- to as retransmittable below.
111
+ to as " retransmittable" below.
112
112
113
113
* Long header packets that contain CRYPTO frames are critical to the
114
114
performance of the QUIC handshake and use shorter timers for acknowledgement
@@ -117,7 +117,8 @@ of frames contained in a packet affect recovery and congestion control logic:
117
117
* Packets that contain only ACK and ACK_ECN frames do not count toward
118
118
congestion control limits and are not considered in-flight. Note that this
119
119
means PADDING frames cause packets to contribute toward bytes in flight
120
- without directly causing an acknowledgment to be sent.
120
+ without directly causing an acknowledgment to be sent. The rest of this
121
+ document uses "ACK frames" to refer to both ACK and ACK_ECN frames.
121
122
122
123
# # Relevant Differences Between QUIC and TCP
123
124
@@ -583,7 +584,7 @@ sent_packets:
583
584
584
585
: An association of packet numbers to information about them, including a number
585
586
field indicating the packet number, a time field indicating the time a packet
586
- was sent, a boolean indicating whether the packet is ack only, a boolen
587
+ was sent, a boolean indicating whether the packet is ack only, a boolean
587
588
indicating whether it counts towards bytes in flight, and a bytes
588
589
field indicating the packet's size. sent_packets is ordered by packet number,
589
590
and packets remain in sent_packets until acknowledged or lost. A sent_packets
@@ -625,7 +626,7 @@ are as follows:
625
626
626
627
* packet_number: The packet number of the sent packet.
627
628
628
- * ack_only: A boolean that indicates whether a packet only contains an
629
+ * ack_only: A boolean that indicates whether a packet contains only
629
630
ACK or PADDING frame(s). If true, it is still expected an ack will
630
631
be received for this packet, but it is not retransmittable.
631
632
0 commit comments