MCPcopy Index your code
hub / github.com/nodejs/node / clearIdleSocketValidation

Function clearIdleSocketValidation

deps/undici/undici.js:7780–7786  ·  view source on GitHub ↗
(socket)

Source from the content-addressed store, hash-verified

7778 }
7779 __name(onSocketClose, "onSocketClose");
7780 function clearIdleSocketValidation(socket) {
7781 if (socket[kIdleSocketValidationTimeout]) {
7782 clearTimeout(socket[kIdleSocketValidationTimeout]);
7783 socket[kIdleSocketValidationTimeout] = null;
7784 }
7785 socket[kIdleSocketValidation] = 0;
7786 }
7787 __name(clearIdleSocketValidation, "clearIdleSocketValidation");
7788 function scheduleIdleSocketValidation(client, socket) {
7789 socket[kIdleSocketValidation] = 1;

Callers 2

onHttpSocketCloseFunction · 0.70
writeH1Function · 0.70

Calls 1

clearTimeoutFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…