mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
net.resolvers.basic: Normalise IP literals, ensures net.server is happy
This commit is contained in:
parent
fcef79d2e9
commit
17f90edfaa
1 changed files with 2 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
local adns = require "net.adns";
|
local adns = require "net.adns";
|
||||||
local inet_pton = require "util.net".pton;
|
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 idna_to_ascii = require "util.encodings".idna.to_ascii;
|
||||||
|
|
||||||
local methods = {};
|
local methods = {};
|
||||||
|
@ -63,6 +64,7 @@ local function new(hostname, port, conn_type, extra)
|
||||||
is_ip = inet_pton(hostname:sub(2,-2));
|
is_ip = inet_pton(hostname:sub(2,-2));
|
||||||
end
|
end
|
||||||
if is_ip then
|
if is_ip then
|
||||||
|
hostname = inet_ntop(is_ip);
|
||||||
if #is_ip == 16 then
|
if #is_ip == 16 then
|
||||||
targets = { { conn_type.."6", hostname, port, extra } };
|
targets = { { conn_type.."6", hostname, port, extra } };
|
||||||
elseif #is_ip == 4 then
|
elseif #is_ip == 4 then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue