Skip to content

Commit

Permalink
tls: remove unnecessary close listener
Browse files Browse the repository at this point in the history
Wrapped streams are expected to behave the same as socket with handle.
Remove unnecessary difference in handling.

PR-URL: #34105
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
  • Loading branch information
ronag authored and addaleax committed Sep 22, 2020
1 parent 0672384 commit 68654da
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/_tls_wrap.js
Expand Up @@ -487,7 +487,6 @@ function TLSSocket(socket, opts) {
// handle, but a JS stream doesn't have one. Wrap it up to make it look like
// a socket.
wrap = new JSStreamSocket(socket);
wrap.once('close', () => this.destroy());
}

// Just a documented property to make secure sockets
Expand Down

0 comments on commit 68654da

Please sign in to comment.