diff --git a/doc/api/quic.md b/doc/api/quic.md index 64b5f7ff087437..9a2d94080cde71 100644 --- a/doc/api/quic.md +++ b/doc/api/quic.md @@ -1188,23 +1188,6 @@ added: REPLACEME The `QuicClientSession` class implements the client side of a QUIC connection. Instances are created using the `quicsocket.connect()` method. -#### Event: `'OCSPResponse'` - - -Emitted when the `QuicClientSession` receives a requested OCSP certificate -status response from the QUIC server peer. - -The callback is invoked with a single argument: - -* `response` {Buffer} - -Node.js does not perform any automatic validation or processing of the -response. - -The `'OCSPResponse'` event will not be emitted more than once. - #### Event: `'sessionTicket'` - -Emitted when the `QuicServerSession` has received a OCSP certificate status -request as part of the TLS handshake. - -The callback is invoked with three arguments: - -* `servername` {string} -* `context` {tls.SecureContext} -* `callback` {Function} - -The callback *must* be invoked in order for the TLS handshake to continue. - -The `'OCSPRequest'` event will not be emitted more than once. - #### `quicserversession.addContext(servername\[, context\])`