net.resolvers.basic: Fix resolution of IPv6 literals (in brackets) (fixes #1459)

This commit is contained in:
Kim Alvefur 2019-11-24 04:26:44 +01:00
parent 7c056be161
commit 9c9722935a

View file

@ -59,6 +59,9 @@ local function new(hostname, port, conn_type, extra)
local targets = nil;
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 then
if #is_ip == 16 then
targets = { { conn_type.."6", hostname, port, extra } };