Skip to content

Commit

Permalink
Define HTTPUnknownFrame type for H3 (#224)
Browse files Browse the repository at this point in the history
Avoid confusing use of QUIC's UnknownFrame type.

Fixes #201
  • Loading branch information
LPardue committed Oct 5, 2022
1 parent fb8cd63 commit 10c6619
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions draft-ietf-quic-qlog-h3-events.md
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ HTTPFrame = HTTPDataFrame /
HTTPGoawayFrame /
HTTPMaxPushIDFrame /
HTTPReservedFrame /
UnknownFrame
HTTPUnknownFrame
~~~
{: #httpframe-def title="HTTPFrame definition"}

Expand Down Expand Up @@ -711,8 +711,16 @@ HTTPReservedFrame = {

### UnknownFrame

HTTP/3 qlog re-uses QUIC's UnknownFrame definition, since their values
and usage overlaps. See {{QLOG-QUIC}}.
~~~ cddl
HTTPUnknownFrame = {
frame_type: "unknown"
raw_frame_type: uint64

? raw_length: uint32
? raw: hexstring
}
~~~
{: #httpunknownframe-def title="UnknownFrame definition"}

## ApplicationError

Expand Down

0 comments on commit 10c6619

Please sign in to comment.