Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.144.145.77
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
socket.io /
dist /
Delete
Unzip
Name
Size
Permission
Date
Action
broadcast-operator.d.ts
4.39
KB
-rw-rw-r--
2022-08-30 11:49
broadcast-operator.js
6.6
KB
-rw-rw-r--
2022-08-30 11:49
client.d.ts
2.77
KB
-rw-rw-r--
2022-08-30 11:49
client.js
7.34
KB
-rw-rw-r--
2022-08-30 11:49
index.d.ts
9.65
KB
-rw-rw-r--
2022-08-30 11:49
index.js
18.44
KB
-rw-rw-r--
2022-08-30 11:49
namespace.d.ts
6.48
KB
-rw-rw-r--
2022-08-30 11:49
namespace.js
8.24
KB
-rw-rw-r--
2022-08-30 11:49
parent-namespace.d.ts
932
B
-rw-rw-r--
2022-08-30 11:49
parent-namespace.js
1.95
KB
-rw-rw-r--
2022-08-30 11:49
socket.d.ts
10.03
KB
-rw-rw-r--
2022-08-30 11:49
socket.js
16.38
KB
-rw-rw-r--
2022-08-30 11:49
typed-events.d.ts
4.95
KB
-rw-rw-r--
2022-08-30 11:49
typed-events.js
2.53
KB
-rw-rw-r--
2022-08-30 11:49
uws.d.ts
171
B
-rw-rw-r--
2022-08-30 11:49
uws.js
5.41
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ParentNamespace = void 0; const namespace_1 = require("./namespace"); class ParentNamespace extends namespace_1.Namespace { constructor(server) { super(server, "/_" + ParentNamespace.count++); this.children = new Set(); } /** * @private */ _initAdapter() { const broadcast = (packet, opts) => { this.children.forEach((nsp) => { nsp.adapter.broadcast(packet, opts); }); }; // @ts-ignore FIXME is there a way to declare an inner class in TypeScript? this.adapter = { broadcast }; } emit(ev, ...args) { this.children.forEach((nsp) => { nsp.emit(ev, ...args); }); return true; } createChild(name) { const namespace = new namespace_1.Namespace(this.server, name); namespace._fns = this._fns.slice(0); this.listeners("connect").forEach((listener) => namespace.on("connect", listener)); this.listeners("connection").forEach((listener) => namespace.on("connection", listener)); this.children.add(namespace); this.server._nsps.set(name, namespace); return namespace; } fetchSockets() { // note: we could make the fetchSockets() method work for dynamic namespaces created with a regex (by sending the // regex to the other Socket.IO servers, and returning the sockets of each matching namespace for example), but // the behavior for namespaces created with a function is less clear // note²: we cannot loop over each children namespace, because with multiple Socket.IO servers, a given namespace // may exist on one node but not exist on another (since it is created upon client connection) throw new Error("fetchSockets() is not supported on parent namespaces"); } } exports.ParentNamespace = ParentNamespace; ParentNamespace.count = 0;