mirror of
https://github.com/nodejs/node.git
synced 2024-11-28 22:46:31 +01:00
3e1b1dd4a9
The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
24 lines
683 B
JavaScript
24 lines
683 B
JavaScript
var common = require('../common');
|
|
var assert = require('assert');
|
|
var dgram = require('dgram');
|
|
|
|
dgram.createSocket('udp4').bind(common.PORT + 0, common.mustCall(function() {
|
|
assert.equal(this.address().port, common.PORT + 0);
|
|
assert.equal(this.address().address, '0.0.0.0');
|
|
this.close();
|
|
}));
|
|
|
|
if (!common.hasIPv6) {
|
|
console.error('Skipping udp6 part of test, no IPv6 support');
|
|
return;
|
|
}
|
|
|
|
dgram.createSocket('udp6').bind(common.PORT + 1, common.mustCall(function() {
|
|
assert.equal(this.address().port, common.PORT + 1);
|
|
var address = this.address().address;
|
|
if (address === '::ffff:0.0.0.0')
|
|
address = '::';
|
|
assert.equal(address, '::');
|
|
this.close();
|
|
}));
|