mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
599 B
33 lines
599 B
net = require('net');
|
|
connections = 0;
|
|
|
|
var errors = 0;
|
|
|
|
server = net.Server(function (socket) {
|
|
|
|
socket.on('end', function () {
|
|
socket.end();
|
|
});
|
|
|
|
socket.on('error', function () {
|
|
errors++;
|
|
});
|
|
|
|
});
|
|
|
|
server.listen(9000);
|
|
|
|
var oldConnections, oldErrors;
|
|
|
|
setInterval(function () {
|
|
if (oldConnections != server.connections) {
|
|
oldConnections = server.connections;
|
|
console.log("SERVER %d connections: %d", process.pid, server.connections);
|
|
}
|
|
|
|
if (oldErrors != errors) {
|
|
oldErrors = errors;
|
|
console.log("SERVER %d errors: %d", process.pid, errors);
|
|
}
|
|
}, 1000);
|
|
|
|
|