aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-11-24 04:26:44 +0100
committerKim Alvefur <zash@zash.se>2019-11-24 04:26:44 +0100
commit9c9722935aeb5040995f0dbf56af455a1b146310 (patch)
tree809447289957579a10205e56f740ec8e28d740bb /net
parent7c056be161ad591b97ca42af3e3087ef45872c61 (diff)
downloadprosody-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.lua3
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 } };