diff options
author | Kim Alvefur <zash@zash.se> | 2019-11-24 04:26:44 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-11-24 04:26:44 +0100 |
commit | 50137dbaf592e69bf9d06ae5398c6c0ff14479fe (patch) | |
tree | 809447289957579a10205e56f740ec8e28d740bb /net/resolvers | |
parent | a286ed0a57ae9b2f0cceb0fc0756a8db95708cc4 (diff) | |
download | prosody-50137dbaf592e69bf9d06ae5398c6c0ff14479fe.tar.gz prosody-50137dbaf592e69bf9d06ae5398c6c0ff14479fe.zip |
net.resolvers.basic: Fix resolution of IPv6 literals (in brackets) (fixes #1459)
Diffstat (limited to 'net/resolvers')
-rw-r--r-- | net/resolvers/basic.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/resolvers/basic.lua b/net/resolvers/basic.lua index e3a94382..93182fda 100644 --- a/net/resolvers/basic.lua +++ b/net/resolvers/basic.lua @@ -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 } }; |