mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.resolvers: Abort on hostnames not passing IDNA validation
Prevents error on trying to use nil. Needs better error reporting in the future.
This commit is contained in:
parent
ba431b5efc
commit
9c2a74d09c
2 changed files with 10 additions and 0 deletions
|
@ -18,6 +18,11 @@ function methods:next(cb)
|
|||
return;
|
||||
end
|
||||
|
||||
if not self.hostname then
|
||||
-- FIXME report IDNA error
|
||||
cb(nil);
|
||||
end
|
||||
|
||||
local targets = {};
|
||||
local n = 2;
|
||||
local function ready()
|
||||
|
|
|
@ -25,6 +25,11 @@ function methods:next(cb)
|
|||
return;
|
||||
end
|
||||
|
||||
if not self.hostname then
|
||||
-- FIXME report IDNA error
|
||||
cb(nil);
|
||||
end
|
||||
|
||||
local targets = {};
|
||||
local function ready()
|
||||
self.targets = targets;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue