mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Merge 0.11->trunk
This commit is contained in:
commit
10aa40227b
1 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue