mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.dns: Use new IPv4-specific socket factory if available (fixes dns on libevent with latest development version of luasocket)
This commit is contained in:
parent
8b4045e568
commit
86200054b7
1 changed files with 1 additions and 1 deletions
|
@ -620,7 +620,7 @@ function resolver:getsocket(servernum) -- - - - - - - - - - - - - getsocket
|
|||
if peer:find(":") then
|
||||
sock, err = socket.udp6();
|
||||
else
|
||||
sock, err = socket.udp();
|
||||
sock, err = (socket.udp4 or socket.udp)();
|
||||
end
|
||||
if sock and self.socket_wrapper then sock, err = self.socket_wrapper(sock, self); end
|
||||
if not sock then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue