aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-11-24 04:46:36 +0100
committerKim Alvefur <zash@zash.se>2019-11-24 04:46:36 +0100
commit10aa40227bc374f95d39bf1c03224c7302f33955 (patch)
treefd40e64f686adc0cd351be4d34293fb96087e596 /net
parentae03335f0be444d9bc6e54326a616bf10456f358 (diff)
parentc3581958f7d24edf39f26a04c4cebe2f7d1b0579 (diff)
downloadprosody-10aa40227bc374f95d39bf1c03224c7302f33955.tar.gz
prosody-10aa40227bc374f95d39bf1c03224c7302f33955.zip
Merge 0.11->trunk
Diffstat (limited to 'net')
-rw-r--r--net/resolvers/basic.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/resolvers/basic.lua b/net/resolvers/basic.lua
index 147d2858..c1931dab 100644
--- a/net/resolvers/basic.lua
+++ b/net/resolvers/basic.lua
@@ -1,5 +1,6 @@
local adns = require "net.adns";
local inet_pton = require "util.net".pton;
+local inet_ntop = require "util.net".ntop;
local idna_to_ascii = require "util.encodings".idna.to_ascii;
local unpack = table.unpack or unpack; -- luacheck: ignore 113
@@ -64,6 +65,7 @@ local function new(hostname, port, conn_type, extra)
is_ip = inet_pton(hostname:sub(2,-2));
end
if is_ip then
+ hostname = inet_ntop(is_ip);
if #is_ip == 16 then
targets = { { conn_type.."6", hostname, port, extra } };
elseif #is_ip == 4 then