net.resolvers: Report when hostname fails IDNA

Not a particularly user-friendly error message, but better than "unable
to resolve service" and having no clue where it came from.
This commit is contained in:
Kim Alvefur 2021-12-07 21:43:36 +01:00
parent aa0b6f765a
commit 96b6f68b23
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@ function methods:next(cb)
end
if not self.hostname then
-- FIXME report IDNA error
self.last_error = "hostname failed IDNA";
cb(nil);
return;
end

View file

@ -34,7 +34,7 @@ function methods:next(cb)
end
if not self.hostname then
-- FIXME report IDNA error
self.last_error = "hostname failed IDNA";
cb(nil);
return;
end