Skip to content

Commit

Permalink
Disable client tracking in ws (hybi), as we already do it
Browse files Browse the repository at this point in the history
  • Loading branch information
nicokaiser committed Mar 28, 2012
1 parent fcc22ff commit 8556c01
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/protocols/hybi.js
Expand Up @@ -28,7 +28,8 @@ exports = module.exports = WebSocket;
function WebSocket (server, req) {
var self = this;
this.wss = new WebSocketServer({
noServer: true
noServer: true
, clientTracking: false
});
Socket.call(this, server, req);
};
Expand Down

0 comments on commit 8556c01

Please sign in to comment.