mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.resolvers.service: Add support for fallback to bare domain and default port
The default port must be configured separately to enable this behavior
This commit is contained in:
parent
ce0ce78b78
commit
6dfb01673a
1 changed files with 3 additions and 0 deletions
|
@ -35,6 +35,9 @@ function methods:next(cb)
|
|||
dns_resolver:lookup(function (answer)
|
||||
if answer then
|
||||
if #answer == 0 then
|
||||
if self.extra and self.extra.default_port then
|
||||
table.insert(targets, { self.domain, self.extra.default_port, self.conn_type, self.extra });
|
||||
end
|
||||
ready();
|
||||
return;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue