Skip to content

Commit c32e591

Browse files
authored
Jana's comments
1 parent a72ec02 commit c32e591

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

draft-ietf-quic-recovery.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ of frames contained in a packet affect recovery and congestion control logic:
108108
* All packets are acknowledged, though packets that contain only ACK,
109109
ACK_ECN, and PADDING frames are not acknowledged immediately. Packets
110110
containing at least one frame besides ACK, ACK_ECN, and PADDING are referred
111-
to as retransmittable below.
111+
to as "retransmittable" below.
112112

113113
* Long header packets that contain CRYPTO frames are critical to the
114114
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:
117117
* Packets that contain only ACK and ACK_ECN frames do not count toward
118118
congestion control limits and are not considered in-flight. Note that this
119119
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.
121122

122123
## Relevant Differences Between QUIC and TCP
123124

@@ -583,7 +584,7 @@ sent_packets:
583584

584585
: An association of packet numbers to information about them, including a number
585586
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
587588
indicating whether it counts towards bytes in flight, and a bytes
588589
field indicating the packet's size. sent_packets is ordered by packet number,
589590
and packets remain in sent_packets until acknowledged or lost. A sent_packets
@@ -625,7 +626,7 @@ are as follows:
625626

626627
* packet_number: The packet number of the sent packet.
627628

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
629630
ACK or PADDING frame(s). If true, it is still expected an ack will
630631
be received for this packet, but it is not retransmittable.
631632

0 commit comments

Comments
 (0)