mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.resolvers.basic: Fix resolution of IPv6 literals (in brackets) (fixes #1459)
This commit is contained in:
parent
7c056be161
commit
9c9722935a
1 changed files with 3 additions and 0 deletions
|
@ -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 } };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue