mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.resolvers.service: Pass IP literals directly to basic resolver
IP literals will not work with SRV records anyways. Fixes s2s with IP literals.
This commit is contained in:
parent
42b9614fe2
commit
ae03335f0b
1 changed files with 9 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
local adns = require "net.adns";
|
||||
local basic = require "net.resolvers.basic";
|
||||
local inet_pton = require "util.net".pton;
|
||||
local idna_to_ascii = require "util.encodings".idna.to_ascii;
|
||||
local unpack = table.unpack or unpack; -- luacheck: ignore 113
|
||||
|
||||
|
@ -69,6 +70,14 @@ function methods:next(cb)
|
|||
end
|
||||
|
||||
local function new(hostname, service, conn_type, extra)
|
||||
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 and extra and extra.default_port then
|
||||
return basic.new(hostname, extra.default_port, conn_type, extra);
|
||||
end
|
||||
|
||||
return setmetatable({
|
||||
hostname = idna_to_ascii(hostname);
|
||||
service = service;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue