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 | a2ef355d2011ca458ffb941e25a032b78194fc56 (patch) | |
tree | 40860f949a3448bcc91c8e665fdc958c54a337fe /net/resolvers | |
parent | f537afbb8e245beea12af9afa0de12744c6c595a (diff) | |
parent | a80cdecc466865986cd7928b6b4d070905e1fd73 (diff) | |
download | prosody-a2ef355d2011ca458ffb941e25a032b78194fc56.tar.gz prosody-a2ef355d2011ca458ffb941e25a032b78194fc56.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); |