diff --git a/lib/_tls_wrap.js b/lib/_tls_wrap.js index 05c5a2fe65cb53..5950c52c1dc2ec 100644 --- a/lib/_tls_wrap.js +++ b/lib/_tls_wrap.js @@ -832,6 +832,14 @@ TLSSocket.prototype._init = function(socket, wrap) { } } + // We can only come here via [kWrapConnectedHandle]() call that happens + // if the connection is established with `autoSelectFamily` set to `true`. + const connectOptions = this[kConnectOptions]; + if (!options.isServer && connectOptions) { + if (connectOptions.servername) { + this.setServername(connectOptions.servername); + } + } if (options.handshakeTimeout > 0) this.setTimeout(options.handshakeTimeout, this._handleTimeout); diff --git a/test/parallel/test-https-autoselectfamily.js b/test/parallel/test-https-autoselectfamily.js index cf7cc450105e7f..21df1654538002 100644 --- a/test/parallel/test-https-autoselectfamily.js +++ b/test/parallel/test-https-autoselectfamily.js @@ -74,7 +74,8 @@ function createDnsServer(ipv6Addr, ipv4Addr, cb) { // Test that IPV4 is reached if IPV6 is not reachable { createDnsServer('::1', '127.0.0.1', common.mustCall(function({ dnsServer, lookup }) { - const ipv4Server = createServer(options, common.mustCall((_, res) => { + const ipv4Server = createServer(options, common.mustCall((req, res) => { + assert.strictEqual(req.socket.servername, 'example.org'); res.writeHead(200, { Connection: 'close' }); res.end('response-ipv4'); })); @@ -86,6 +87,7 @@ function createDnsServer(ipv6Addr, ipv4Addr, cb) { lookup, rejectUnauthorized: false, autoSelectFamily: true, + servername: 'example.org', }, (res) => { assert.strictEqual(res.statusCode, 200); @@ -111,12 +113,14 @@ function createDnsServer(ipv6Addr, ipv4Addr, cb) { // Test that IPV4 is NOT reached if IPV6 is reachable if (common.hasIPv6) { createDnsServer('::1', '127.0.0.1', common.mustCall(function({ dnsServer, lookup }) { - const ipv4Server = createServer(options, common.mustNotCall((_, res) => { + const ipv4Server = createServer(options, common.mustNotCall((req, res) => { + assert.strictEqual(req.socket.servername, 'example.org'); res.writeHead(200, { Connection: 'close' }); res.end('response-ipv4'); })); - const ipv6Server = createServer(options, common.mustCall((_, res) => { + const ipv6Server = createServer(options, common.mustCall((req, res) => { + assert.strictEqual(req.socket.servername, 'example.org'); res.writeHead(200, { Connection: 'close' }); res.end('response-ipv6'); })); @@ -131,6 +135,7 @@ if (common.hasIPv6) { lookup, rejectUnauthorized: false, autoSelectFamily: true, + servername: 'example.org', }, (res) => { assert.strictEqual(res.statusCode, 200);