mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.resolvers: Apply IDNA conversion to ascii for DNS lookups (fixes #1426)
This commit is contained in:
parent
9bd711b194
commit
ba431b5efc
2 changed files with 4 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
|||
local adns = require "net.adns";
|
||||
local inet_pton = require "util.net".pton;
|
||||
local idna_to_ascii = require "util.encodings".idna.to_ascii;
|
||||
|
||||
local methods = {};
|
||||
local resolver_mt = { __index = methods };
|
||||
|
@ -59,7 +60,7 @@ end
|
|||
|
||||
local function new(hostname, port, conn_type, extra)
|
||||
return setmetatable({
|
||||
hostname = hostname;
|
||||
hostname = idna_to_ascii(hostname);
|
||||
port = port;
|
||||
conn_type = conn_type or "tcp";
|
||||
extra = extra;
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
local adns = require "net.adns";
|
||||
local basic = require "net.resolvers.basic";
|
||||
local idna_to_ascii = require "util.encodings".idna.to_ascii;
|
||||
|
||||
local methods = {};
|
||||
local resolver_mt = { __index = methods };
|
||||
|
@ -58,7 +59,7 @@ end
|
|||
|
||||
local function new(hostname, service, conn_type, extra)
|
||||
return setmetatable({
|
||||
hostname = hostname;
|
||||
hostname = idna_to_ascii(hostname);
|
||||
service = service;
|
||||
conn_type = conn_type or "tcp";
|
||||
extra = extra;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue