diff options
author | Matthew Wild <mwild1@gmail.com> | 2020-07-10 13:01:17 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2020-07-10 13:01:17 +0100 |
commit | 68b6e79bd6f717b38bcdf799f2b98686e2f621ec (patch) | |
tree | 40860f949a3448bcc91c8e665fdc958c54a337fe /net/resolvers | |
parent | e85395014d43753c221c16f22a372e405628faf0 (diff) | |
parent | 7148b63895a6ebce714b4b077aa45811a4342586 (diff) | |
download | prosody-68b6e79bd6f717b38bcdf799f2b98686e2f621ec.tar.gz prosody-68b6e79bd6f717b38bcdf799f2b98686e2f621ec.zip |
Merge 0.11->trunk
Diffstat (limited to 'net/resolvers')
-rw-r--r-- | net/resolvers/basic.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/resolvers/basic.lua b/net/resolvers/basic.lua index 6458c638..a00fbce1 100644 --- a/net/resolvers/basic.lua +++ b/net/resolvers/basic.lua @@ -70,6 +70,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 @@ -87,7 +88,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); |