mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
baa0ffdab3
* Move shared code into common * Favor use of strictEqual * Add some missing common.mustCalls * Other general cleanup PR-URL: https://github.com/nodejs/node/pull/8261 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
41 lines
870 B
JavaScript
41 lines
870 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const cluster = require('cluster');
|
|
const dgram = require('dgram');
|
|
|
|
if (common.isWindows) {
|
|
common.skip('dgram clustering is currently not supported ' +
|
|
'on windows.');
|
|
return;
|
|
}
|
|
|
|
if (cluster.isMaster) {
|
|
cluster.fork().on('exit', common.mustCall((code) => {
|
|
assert.strictEqual(code, 0);
|
|
}));
|
|
return;
|
|
}
|
|
|
|
const sockets = [];
|
|
function next() {
|
|
sockets.push(this);
|
|
if (sockets.length !== 2)
|
|
return;
|
|
|
|
// Work around health check issue
|
|
process.nextTick(() => {
|
|
for (var i = 0; i < sockets.length; i++)
|
|
sockets[i].close(close);
|
|
});
|
|
}
|
|
|
|
var waiting = 2;
|
|
function close() {
|
|
if (--waiting === 0)
|
|
cluster.worker.disconnect();
|
|
}
|
|
|
|
for (var i = 0; i < 2; i++)
|
|
dgram.createSocket({ type: 'udp4', reuseAddr: true }).bind(common.PORT, next);
|