mirror of
https://github.com/nodejs/node.git
synced 2025-05-13 16:39:33 +00:00

Use the common.isWindows, common.isFreeBSD and common.isSunOS where possible. Add common.isOSX and common.isLinux. Fix `test-fs-read-file-sync-hostname` as in its current form was not being run anywhere. PR-URL: https://github.com/nodejs/node/pull/7845 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com>
27 lines
614 B
JavaScript
27 lines
614 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const dgram = require('dgram');
|
|
|
|
if (common.isOSX) {
|
|
common.skip('because of 17894467 Apple bug');
|
|
return;
|
|
}
|
|
|
|
const client = dgram.createSocket('udp4');
|
|
|
|
client.bind(0, function() {
|
|
const port = this.address().port;
|
|
|
|
client.on('message', common.mustCall(function onMessage(buffer, bytes) {
|
|
clearTimeout(timer);
|
|
client.close();
|
|
}));
|
|
|
|
const buf = Buffer.alloc(0);
|
|
client.send(buf, 0, 0, port, '127.0.0.1', function(err, len) { });
|
|
|
|
const timer = setTimeout(function() {
|
|
throw new Error('Timeout');
|
|
}, common.platformTimeout(200));
|
|
});
|