`dns.lookup` options only accepts integer for `family` options, having a string doesn't really make sense here. PR-URL: https://github.com/nodejs/node/pull/41431 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
26 lines
653 B
JavaScript
26 lines
653 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
// This test ensures that socket.connect can be called without callback
|
|
// which is optional.
|
|
|
|
const net = require('net');
|
|
|
|
const server = net.createServer(common.mustCall(function(conn) {
|
|
conn.end();
|
|
server.close();
|
|
})).listen(0, common.mustCall(function() {
|
|
const client = new net.Socket();
|
|
|
|
client.on('connect', common.mustCall(function() {
|
|
client.end();
|
|
}));
|
|
|
|
const address = server.address();
|
|
if (!common.hasIPv6 && address.family === 6) {
|
|
// Necessary to pass CI running inside containers.
|
|
client.connect(address.port);
|
|
} else {
|
|
client.connect(address);
|
|
}
|
|
}));
|