mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
net.resolvers.basic: Support IP address literals
This commit is contained in:
parent
31c92dfc4b
commit
5cb2160a0b
1 changed files with 11 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
local adns = require "net.adns";
|
||||
local inet_pton = require "util.net".pton;
|
||||
|
||||
local methods = {};
|
||||
local resolver_mt = { __index = methods };
|
||||
|
@ -25,6 +26,16 @@ function methods:next(cb)
|
|||
self:next(cb);
|
||||
end
|
||||
|
||||
local is_ip = inet_pton(self.hostname);
|
||||
if is_ip then
|
||||
if #is_ip == 16 then
|
||||
cb(self.conn_type.."6", self.hostname, self.port, self.extra);
|
||||
elseif #is_ip == 4 then
|
||||
cb(self.conn_type, self.hostname, self.port, self.extra);
|
||||
end
|
||||
return;
|
||||
end
|
||||
|
||||
-- Resolve DNS to target list
|
||||
local dns_resolver = adns.resolver();
|
||||
dns_resolver:lookup(function (answer)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue