mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 21:19:50 +01:00
15164cebce
Doc deprecate isMaster and setupMaster in favor of isPrimary and setupPrimary. Signed-off-by: Michael Dawson <mdawson@devrus.com> PR-URL: https://github.com/nodejs/node/pull/36478 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Beth Griggs <bgriggs@redhat.com>
52 lines
1.2 KiB
JavaScript
52 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.hasIPv6)
|
|
common.skip('no IPv6 support');
|
|
if (common.isWindows)
|
|
common.skip('dgram clustering is currently not supported on windows.');
|
|
|
|
const assert = require('assert');
|
|
const cluster = require('cluster');
|
|
const dgram = require('dgram');
|
|
|
|
// This test ensures that the `ipv6Only` option in `dgram.createSock()`
|
|
// works as expected.
|
|
if (cluster.isPrimary) {
|
|
cluster.fork().on('exit', common.mustCall((code) => {
|
|
assert.strictEqual(code, 0);
|
|
}));
|
|
} else {
|
|
let waiting = 2;
|
|
function close() {
|
|
if (--waiting === 0)
|
|
cluster.worker.disconnect();
|
|
}
|
|
|
|
const socket1 = dgram.createSocket({
|
|
type: 'udp6',
|
|
ipv6Only: true
|
|
});
|
|
const socket2 = dgram.createSocket({
|
|
type: 'udp4',
|
|
});
|
|
socket1.on('error', common.mustNotCall());
|
|
socket2.on('error', common.mustNotCall());
|
|
|
|
socket1.bind({
|
|
port: 0,
|
|
address: '::',
|
|
}, common.mustCall(() => {
|
|
const { port } = socket1.address();
|
|
socket2.bind({
|
|
port,
|
|
address: '0.0.0.0',
|
|
}, common.mustCall(() => {
|
|
process.nextTick(() => {
|
|
socket1.close(close);
|
|
socket2.close(close);
|
|
});
|
|
}));
|
|
}));
|
|
}
|