diff --git a/doc/api/tls.md b/doc/api/tls.md index bedf4e28e7bc04..2e96bb4b7f3819 100644 --- a/doc/api/tls.md +++ b/doc/api/tls.md @@ -432,8 +432,9 @@ added: v0.3.2 * `socket` {stream.Duplex} This event is emitted when a new TCP stream is established, before the TLS -handshake begins. `socket` is typically an object of type [`net.Socket`][]. -Usually users will not want to access this event. +handshake begins. `socket` is typically an object of type [`net.Socket`][] but +will not receive events unlike the socket created from the [`net.Server`][] +`'connection'` event. Usually users will not want to access this event. This event can also be explicitly emitted by users to inject connections into the TLS server. In that case, any [`Duplex`][] stream can be passed.