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.
 
 
 
 
 
 

30 lines
611 B

'use strict';
const common = require('../common');
if (common.isWindows) {
common.skip('on windows, because clustered dgram is ENOTSUP');
return;
}
const cluster = require('cluster');
const dgram = require('dgram');
if (cluster.isMaster) {
const unbound = cluster.fork().on('online', bind);
function bind() {
cluster.fork({BOUND: 'y'}).on('listening', disconnect);
}
function disconnect() {
unbound.disconnect();
unbound.on('disconnect', cluster.disconnect);
}
} else {
if (process.env.BOUND === 'y') {
const source = dgram.createSocket('udp4');
source.bind(0);
}
}