/home/techb158/balavpn.abdallabala.com/node_modules/next/dist/build/turborepo-access-trace
NameSizeModeActions
env.d.ts3940666editdlrm
env.js7320666editdlrm
env.js.map14730666editdlrm
helpers.d.ts8500666editdlrm
helpers.js35220666editdlrm
helpers.js.map53800666editdlrm
index.d.ts2100666editdlrm
index.js8160666editdlrm
index.js.map5600666editdlrm
result.d.ts11580666editdlrm
result.js18540666editdlrm
result.js.map33060666editdlrm
tcp.d.ts3880666editdlrm
tcp.js13930666editdlrm
tcp.js.map22350666editdlrm
types.d.ts12380666editdlrm
types.js2030666editdlrm
types.js.map14120666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/next/dist/build/turborepo-access-trace/tcp.js (1393B)
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "tcpProxy", { enumerable: true, get: function() { return tcpProxy; } }); const _net = /*#__PURE__*/ _interop_require_default(require("net")); function _interop_require_default(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function tcpProxy(addresses) { // net.Socket docs https://nodejs.org/api/net.html#class-netsocket const originalConnect = _net.default.Socket.prototype.connect; // Override the connect method _net.default.Socket.prototype.connect = function(...args) { // First, check if the first argument is an object and not null if (typeof args[0] === 'object' && args[0] !== null) { const options = args[0]; // check if the options has what we need if ('port' in options && options.port !== undefined && 'host' in options && options.host !== undefined) { addresses.push({ addr: options.host, port: options.port.toString() }); } } return originalConnect.apply(this, args); }; return ()=>{ // Restore the original connect method _net.default.Socket.prototype.connect = originalConnect; }; } //# sourceMappingURL=tcp.js.map