mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.resolvers.basic: Default conn_type to 'tcp' consistently if unspecified (thanks marc0s)
Fixes a traceback when passed an IP address with no conn_type.
This commit is contained in:
parent
bfd9789cb1
commit
a80cdecc46
1 changed files with 2 additions and 1 deletions
|
@ -58,6 +58,7 @@ end
|
|||
local function new(hostname, port, conn_type, extra)
|
||||
local ascii_host = idna_to_ascii(hostname);
|
||||
local targets = nil;
|
||||
conn_type = conn_type or "tcp";
|
||||
|
||||
local is_ip = inet_pton(hostname);
|
||||
if not is_ip and hostname:sub(1,1) == '[' then
|
||||
|
@ -75,7 +76,7 @@ local function new(hostname, port, conn_type, extra)
|
|||
return setmetatable({
|
||||
hostname = ascii_host;
|
||||
port = port;
|
||||
conn_type = conn_type or "tcp";
|
||||
conn_type = conn_type;
|
||||
extra = extra;
|
||||
targets = targets;
|
||||
}, resolver_mt);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue