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.
41 lines
873 B
41 lines
873 B
9 years ago
|
'use strict';
|
||
|
const common = require('../common');
|
||
|
const assert = require('assert');
|
||
|
const cluster = require('cluster');
|
||
|
const dgram = require('dgram');
|
||
|
|
||
|
if (common.isWindows) {
|
||
|
console.log('1..0 # Skipped: dgram clustering is currently not supported ' +
|
||
|
'on windows.');
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (cluster.isMaster) {
|
||
|
cluster.fork().on('exit', function(code) {
|
||
|
assert.equal(code, 0);
|
||
|
});
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
const sockets = [];
|
||
|
function next() {
|
||
|
sockets.push(this);
|
||
|
if (sockets.length !== 2)
|
||
|
return;
|
||
|
|
||
|
// Work around health check issue
|
||
|
process.nextTick(function() {
|
||
|
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);
|