mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
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:
parent
aa0b6f765a
commit
96b6f68b23
2 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ function methods:next(cb)
|
||||||
end
|
end
|
||||||
|
|
||||||
if not self.hostname then
|
if not self.hostname then
|
||||||
-- FIXME report IDNA error
|
self.last_error = "hostname failed IDNA";
|
||||||
cb(nil);
|
cb(nil);
|
||||||
return;
|
return;
|
||||||
end
|
end
|
||||||
|
|
|
@ -34,7 +34,7 @@ function methods:next(cb)
|
||||||
end
|
end
|
||||||
|
|
||||||
if not self.hostname then
|
if not self.hostname then
|
||||||
-- FIXME report IDNA error
|
self.last_error = "hostname failed IDNA";
|
||||||
cb(nil);
|
cb(nil);
|
||||||
return;
|
return;
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue