![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/dceprojects.corals.io/node_modules/socket.io/lib/ |
'use strict'; const Namespace = require('./namespace'); let count = 0; class ParentNamespace extends Namespace { constructor(server) { super(server, '/_' + (count++)); this.children = new Set(); } initAdapter() {} emit() { const args = Array.prototype.slice.call(arguments); this.children.forEach(nsp => { nsp.rooms = this.rooms; nsp.flags = this.flags; nsp.emit.apply(nsp, args); }); this.rooms = []; this.flags = {}; } createChild(name) { const namespace = new 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[name] = namespace; return namespace; } } module.exports = ParentNamespace;