Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2020-07-11 01:24:48 +0300
committerJames M Snell <jasnell@gmail.com>2020-07-16 03:16:59 +0300
commit8e5c5b16ab3764958f4fd5d9518814a375e6d071 (patch)
tree4d8ae6e46f928fcb3f68a7da5a911d1d081107ae /doc/api/errors.md
parentfe4e7e4598fc4396a06cbf2eb2544ae9ce6f8d10 (diff)
quic: cleanup QuicClientSession constructor
PR-URL: https://github.com/nodejs/node/pull/34283 Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'doc/api/errors.md')
-rw-r--r--doc/api/errors.md30
1 files changed, 27 insertions, 3 deletions
diff --git a/doc/api/errors.md b/doc/api/errors.md
index 248944097f6..2f7968031d7 100644
--- a/doc/api/errors.md
+++ b/doc/api/errors.md
@@ -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`