net.resolvers.service: Pass IP literals directly to basic resolver

IP literals will not work with SRV records anyways.

Fixes s2s with IP literals.
This commit is contained in:
Kim Alvefur 2019-11-24 04:43:14 +01:00
parent 42b9614fe2
commit ae03335f0b

View file

@ -1,5 +1,6 @@
local adns = require "net.adns";
local basic = require "net.resolvers.basic";
local inet_pton = require "util.net".pton;
local idna_to_ascii = require "util.encodings".idna.to_ascii;
local unpack = table.unpack or unpack; -- luacheck: ignore 113
@ -69,6 +70,14 @@ function methods:next(cb)
end
local function new(hostname, service, conn_type, extra)
local is_ip = inet_pton(hostname);
if not is_ip and hostname:sub(1,1) == '[' then
is_ip = inet_pton(hostname:sub(2,-2));
end
if is_ip and extra and extra.default_port then
return basic.new(hostname, extra.default_port, conn_type, extra);
end
return setmetatable({
hostname = idna_to_ascii(hostname);
service = service;