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-10 23:48:45 +0300
committerJames M Snell <jasnell@gmail.com>2020-07-16 03:16:55 +0300
commit346aeaf87493400fbeb53eeefb50b47537fb0cda (patch)
tree916cb1a7f8e63893d8ff8302058e8b159b2dc998 /doc/api/quic.md
parent6665dda9f60e7478cd45df9c18be51ef4d71938e (diff)
quic: eliminate "ready"/"not ready" states for QuicSession
QuicClientSession and QuicServerSessions are now always immediately ready for use when they are created, so no more need to track ready state. PR-URL: https://github.com/nodejs/node/pull/34283 Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'doc/api/quic.md')
-rw-r--r--doc/api/quic.md10
1 files changed, 0 insertions, 10 deletions
diff --git a/doc/api/quic.md b/doc/api/quic.md
index cb3180e0cdf..671a4c681be 100644
--- a/doc/api/quic.md
+++ b/doc/api/quic.md
@@ -1269,16 +1269,6 @@ empty object when the key exchange is not ephemeral. The supported types are
For example: `{ type: 'ECDH', name: 'prime256v1', size: 256 }`.
-#### quicclientsession.ready
-<!-- YAML
-added: REPLACEME
--->
-
-* Type: {boolean}
-
-Set to `true` if the `QuicClientSession` is ready for use. False if the
-`QuicSocket` has not yet been bound.
-
#### quicclientsession.setSocket(socket])
<!-- YAML
added: REPLACEME