mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 20:08:02 +00:00

Manually fix issues that eslint --fix couldn't do automatically. PR-URL: https://github.com/nodejs/node/pull/10685 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
19 lines
428 B
JavaScript
19 lines
428 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const net = require('net');
|
|
|
|
function check(addressType) {
|
|
const server = net.createServer(function(client) {
|
|
client.end();
|
|
server.close();
|
|
});
|
|
|
|
const address = addressType === 4 ? '127.0.0.1' : '::1';
|
|
server.listen(0, address, function() {
|
|
net.connect(this.address().port, address).on('lookup', common.fail);
|
|
});
|
|
}
|
|
|
|
check(4);
|
|
common.hasIPv6 && check(6);
|