Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add raw_ack_delay field to AckFrame #337

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions draft-ietf-quic-qlog-quic-events.md
Original file line number Diff line number Diff line change
Expand Up @@ -1695,13 +1695,18 @@ PingFrame = {
; For two numbers:
; the first number is "from": lowest packet number in interval
; the second number is "to": up to and including the highest
; packet number in the interval
; packet number in the interval.
AckRange = [1*2 uint64]

AckFrame = {
frame_type: "ack"

; in ms
; the raw, unscaled delay as received in the frame
? raw_ack_delay: uint64

; the decoded delay, scaled by ack_delay_exponent
; in ms (instead of us)
; this is easier to reason about than the raw value
? ack_delay: float32

; e.g., looks like [[1,2],[4,5], [7], [10,22]] serialized
Expand Down
Loading