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:
Kim Alvefur 2019-11-02 19:36:19 +01:00
parent ba431b5efc
commit 9c2a74d09c
2 changed files with 10 additions and 0 deletions

View file

@ -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()

View file

@ -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;