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 fields and events for DPLPMTUD #210

Merged
merged 1 commit into from
Sep 9, 2022
Merged
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
22 changes: 22 additions & 0 deletions draft-ietf-quic-qlog-quic-events.md
Original file line number Diff line number Diff line change
Expand Up @@ -779,6 +779,8 @@ TransportPacketSent = {
? raw: RawInfo
? datagram_id: uint32

? is_mtu_probe_packet: bool .default false

? trigger:
; draft-23 5.1.1
"retransmit_reordered" /
Expand Down Expand Up @@ -1347,6 +1349,8 @@ RecoveryPacketLost = {
; see appendix for the QuicFrame definitions
? frames: [* QuicFrame]

? is_mtu_probe_packet: boolean .default false

? trigger:
"reordering_threshold" /
"time_threshold" /
Expand Down Expand Up @@ -1391,6 +1395,24 @@ RecoveryMarkedForRetransmit = {
~~~
{: #recovery-markedforretransmit-def title="RecoveryMarkedForRetransmit definition"}

## mtu_updated
Importance: Extra

~~~ ccdl
MTUUpdated = {
? mtu: uint16

; at some point, MTU discovery stops, as a "good enough"
; packet size has been found
? done: boolean .default false
}
~~~
{: #mtu-updated-def title="MTUUpdated definition"}

This event indicates that the estimated Path MTU was updated. This happens as
part of the Path MTU discovery process.


# Security Considerations

TBD
Expand Down