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

quic: more quic refactorings and cleanups #34283

Closed
wants to merge 18 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
30 changes: 27 additions & 3 deletions doc/api/errors.md
Expand Up @@ -1748,12 +1748,36 @@ Accessing `Object.prototype.__proto__` has been forbidden using
[`Object.setPrototypeOf`][] should be used to get and set the prototype of an
object.

<a id="ERR_QUICSESSION_VERSION_NEGOTIATION"></a>
### `ERR_QUICSESSION_VERSION_NEGOTIATION`
<a id="ERR_QUIC_FAILED_TO_CREATE_SESSION"></a>
### `ERR_QUIC_FAILED_TO_CREATE_SESSION`

> Stability: 1 - Experimental

TBD
An unspecified failure occured trying to initialize a new `QuicClientSession`.

<a id="ERR_QUIC_INVALID_REMOTE_TRANSPORT_PARAMS"></a>
### `ERR_QUIC_INVALID_REMOTE_TRANSPORT_PARAMS`

> Stability: 1 - Experimental

An attempt to resume a `QuicClientSession` using remembered remote transport
parameters failed because the transport parameters were invalid.

<a id="ERR_QUIC_INVALID_TLS_SESSION_TICKET"></a>
### `ERR_QUIC_INVALID_TLS_SESSION_TICKET`

> Stability: 1 - Experimental

An attempt resume a `QuicClientSession` using a remembered TLS session ticket
failed because the session ticket was invalid.

<a id="ERR_QUIC_VERSION_NEGOTIATION"></a>
### `ERR_QUIC_VERSION_NEGOTIATION`

> Stability: 1 - Experimental

A `QuicClientSession` received a version negotiation request from the
server and was shutdown accordingly.

<a id="ERR_REQUIRE_ESM"></a>
### `ERR_REQUIRE_ESM`
Expand Down