Skip to content

Commit

Permalink
Fix constant of frame_type IMMEDIATE_ACK
Browse files Browse the repository at this point in the history
Both the draft and the IANA registry say the current value for
frame_type IMMEDIATE_ACK is 0x1F.

https://www.iana.org/assignments/quic/quic.xhtml
https://datatracker.ietf.org/doc/html/draft-ietf-quic-ack-frequency#section-10.2

Co-Authored-By: Tamas Levai <levait@tmit.bme.hu>
  • Loading branch information
2 people authored and Ralith committed Mar 6, 2024
1 parent 9611c5e commit 2e72f27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quinn-proto/src/frame.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ frame_types! {
HANDSHAKE_DONE = 0x1e,
// ACK Frequency
ACK_FREQUENCY = 0xaf,
IMMEDIATE_ACK = 0xac,
IMMEDIATE_ACK = 0x1f,
// DATAGRAM
}

Expand Down

0 comments on commit 2e72f27

Please sign in to comment.