mirror of https://github.com/nodejs/node.git
benchmark: add a constant declaration for `net`
Constant declaration for `net` is omitted in `idle_server.js` Add a constant declaration for constant `net` PR-URL: https://github.com/nodejs/node/pull/3950 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>pull/3950/merge
parent
9429685d48
commit
4126441013
|
@ -1,12 +1,13 @@
|
|||
net = require('net');
|
||||
connections = 0;
|
||||
'use strict';
|
||||
|
||||
const net = require('net');
|
||||
var connections = 0;
|
||||
var errors = 0;
|
||||
|
||||
server = net.Server(function (socket) {
|
||||
var server = net.Server(function (socket) {
|
||||
|
||||
socket.on('error', function () {
|
||||
errors++;
|
||||
errors++;
|
||||
});
|
||||
|
||||
});
|
||||
|
@ -28,4 +29,3 @@ setInterval(function () {
|
|||
console.log("SERVER %d errors: %d", process.pid, errors);
|
||||
}
|
||||
}, 1000);
|
||||
|
||||
|
|
Loading…
Reference in New Issue