Skip to content

Commit 4a82835

Browse files
committed
tls: fix initRead socket argument name
"wrapped" argument is the caller's "socket", not its "wrap", and its referred to as "socket" in the comments, so call it that. PR-URL: nodejs#25153 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anatoli Papirovski <[email protected]>
1 parent 5f5d3c9 commit 4a82835

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

lib/_tls_wrap.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -271,15 +271,17 @@ function onerror(err) {
271271
}
272272
}
273273

274-
function initRead(tls, wrapped) {
274+
// Used by both client and server TLSSockets to start data flowing from _handle,
275+
// read(0) causes a StreamBase::ReadStart, via Socket._read.
276+
function initRead(tls, socket) {
275277
// If we were destroyed already don't bother reading
276278
if (!tls._handle)
277279
return;
278280

279281
// Socket already has some buffered data - emulate receiving it
280-
if (wrapped && wrapped.readableLength) {
282+
if (socket && socket.readableLength) {
281283
var buf;
282-
while ((buf = wrapped.read()) !== null)
284+
while ((buf = socket.read()) !== null)
283285
tls._handle.receive(buf);
284286
}
285287

0 commit comments

Comments
 (0)