Assignment to constant var

This commit is contained in:
Mikko Ahlroth 2024-07-18 13:16:45 +03:00
parent 53b43a69ee
commit 1e5c95402d

View file

@ -247,7 +247,7 @@ if (!TARGET_ADDRESS || !TARGET_PORT || Number.isNaN(TARGET_PORT)) {
const CONNECTIONS = new TargetMap(); const CONNECTIONS = new TargetMap();
/** @type {NodeJS.Timer | null} */ /** @type {NodeJS.Timer | null} */
const TOTAL_IDLE_TIMER = null; let TOTAL_IDLE_TIMER = null;
const READ_SOCKET = createSocket(SOCKET_TYPE); const READ_SOCKET = createSocket(SOCKET_TYPE);
startTotalIdleTimer(); startTotalIdleTimer();