diff --git a/doc/api/quic.md b/doc/api/quic.md index 9a2d94080cde71..897f39245c2200 100644 --- a/doc/api/quic.md +++ b/doc/api/quic.md @@ -1274,38 +1274,6 @@ The `QuicServerSession` class implements the server side of a QUIC connection. Instances are created internally and are emitted using the `QuicSocket` `'session'` event. -#### Event: `'clientHello'` - - -Emitted at the start of the TLS handshake when the `QuicServerSession` receives -the initial TLS Client Hello. - -The event handler is given a callback function that *must* be invoked for the -handshake to continue. - -The callback is invoked with four arguments: - -* `alpn` {string} The ALPN protocol identifier requested by the client. -* `servername` {string} The SNI servername requested by the client. -* `ciphers` {string[]} The list of TLS cipher algorithms requested by the - client. -* `callback` {Function} A callback function that must be called in order for - the TLS handshake to continue. - -The `'clientHello'` event will not be emitted more than once. - -#### `quicserversession.addContext(servername\[, context\])` - - -* `servername` {string} A DNS name to associate with the given context. -* `context` {tls.SecureContext} A TLS SecureContext to associate with the `servername`. - -TBD - ### Class: `QuicSocket`