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:
Kim Alvefur 2015-09-25 17:32:13 +02:00
parent 8b4045e568
commit 86200054b7

View file

@ -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