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 | 9c9722935aeb5040995f0dbf56af455a1b146310 (patch) | |
tree | 809447289957579a10205e56f740ec8e28d740bb /net | |
parent | 7c056be161ad591b97ca42af3e3087ef45872c61 (diff) | |
download | prosody-9c9722935aeb5040995f0dbf56af455a1b146310.tar.gz prosody-9c9722935aeb5040995f0dbf56af455a1b146310.zip |
net.resolvers.basic: Fix resolution of IPv6 literals (in brackets) (fixes #1459)
Diffstat (limited to 'net')
-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 } }; |