Skip to content

Commit

Permalink
add an error for overflow of a MAX_STREAMS frame
Browse files Browse the repository at this point in the history
  • Loading branch information
marten-seemann committed Nov 4, 2019
1 parent 35c522b commit 2ff363c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion draft-ietf-quic-transport.md
Expand Up @@ -5168,7 +5168,10 @@ MAX_STREAMS frames contain the following fields:
Maximum Streams:

: A count of the cumulative number of streams of the corresponding type that
can be opened over the lifetime of the connection.
can be opened over the lifetime of the connection. Stream IDs cannot exceed
2^62-1, as it is not possible to encode stream IDs larger than this value.
Receipt of a frame that permits opening of a stream larger than this limit
MUST be treated as a FRAME_ENCODING_ERROR.

Loss or reordering can cause a MAX_STREAMS frame to be received which states a
lower stream limit than an endpoint has previously received. MAX_STREAMS frames
Expand Down

0 comments on commit 2ff363c

Please sign in to comment.