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

enforce the active_connection_id_limit #3201

Merged
7 changes: 5 additions & 2 deletions draft-ietf-quic-transport.md
Expand Up @@ -4598,8 +4598,11 @@ active_connection_id_limit (0x000e):
to store. This value includes connection IDs sent in NEW_CONNECTION_ID frames,
the connection ID used during the handshake as well as the connection ID
provided in the preferred_address transport parameter.
marten-seemann marked this conversation as resolved.
Show resolved Hide resolved
If the active_connection_id_limit parameter is absent, a default of 2 is
assumed. Values below 2 are invalid.
Unless a zero-length connection ID is being used, the value of the
active_connection_id_limit parameter MUST be no less than 2. If this
transport parameter is absent, a default of 2 is assumed.
When a zero-length connection ID is being used, the active_connection_id_limit
parameter MUST NOT be sent.
marten-seemann marked this conversation as resolved.
Show resolved Hide resolved

If present, transport parameters that set initial flow control limits
(initial_max_stream_data_bidi_local, initial_max_stream_data_bidi_remote, and
Expand Down