mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
dcfda1007b
In the hopes of soon having the benchmark code linted, this change groups all the likely non-controversial lint-compliance changes such as indentation, semi-colon usage, and single-vs.-double quotation marks. Other lint rules may have subtle performance implications in the V8 currently shipped with Node.js. Those changes will require more careful review and will be in a separate change. PR-URL: https://github.com/nodejs/node/pull/5429 Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Brian White <mscdex@mscdex.net>
31 lines
575 B
JavaScript
31 lines
575 B
JavaScript
'use strict';
|
|
|
|
const net = require('net');
|
|
var errors = 0;
|
|
|
|
var server = net.Server(function(socket) {
|
|
|
|
socket.on('error', function() {
|
|
errors++;
|
|
});
|
|
|
|
});
|
|
|
|
//server.maxConnections = 128;
|
|
|
|
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);
|