5

使用 nowjs 如何配置较低级别的 socket.io 的日志记录级别以及每个连接(全局)身份验证级别?

例如,如果我只是使用 socket.io,我将使用以下代码:

socketServer.configure(function (){  
  socketServer.set('authorization', function (handshakeData, callback) { 
    callback(null, true); // error first callback style 
  });  
  socketServer.set('log level', 1);
});

谢谢!!

4

1 回答 1

6

You can pass in socket.io options in the nowjs.initialize() call under the socketio key.

Example:

 nowjs.initialize(httpServer, {socketio: {'log level': 1, 'authorization': myfunc}});
于 2011-08-11T22:20:45.090 回答