namespace: added connected hash

This commit is contained in:
Guillermo Rauch
2012-12-23 23:18:26 -03:00
parent dbba592dfa
commit bcfec6df76

View File

@@ -45,14 +45,14 @@ var emit = Emitter.prototype.emit;
*/
function Namespace(server, name){
this.server = server;
this.name = name;
this.server = server;
this.adapter = new (server.adapter())(this);
this.sockets = [];
this.connected = {};
this.fns = [];
this.ids = 0;
this.acks = {};
this.flags = [];
this.rooms = [];
}
/**