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 MylesBorins committed Jul 14, 2020
1 parent 4dd8aee commit 30d62c1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/_tls_wrap.js
Expand Up @@ -490,7 +490,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 30d62c1

Please sign in to comment.