I can\'t seem to find out how to set the heartbeat options for socket.io? I\'d love to be able to specify what happens when a \"timemout\" happens, and when the server hasn\
var app = express();
var server = require('http').createServer(app);
var io = require('socket.io')(server);
io.set('heartbeat timeout', 4000);
io.set('heartbeat interval', 2000);