Skip to content

Commit

Permalink
namespace: added connected hash
Browse files Browse the repository at this point in the history
  • Loading branch information
rauchg committed Dec 24, 2012
1 parent dbba592 commit bcfec6d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/namespace.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [];
}

/**
Expand Down

0 comments on commit bcfec6d

Please sign in to comment.