diff options
Diffstat (limited to 'net/dns.lua')
-rw-r--r-- | net/dns.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dns.lua b/net/dns.lua index bd42db73..95f09cc9 100644 --- a/net/dns.lua +++ b/net/dns.lua @@ -629,10 +629,10 @@ function resolver:getsocket(servernum) -- - - - - - - - - - - - - getsocket else sock, err = socket.udp(); end + if sock and self.socket_wrapper then sock, err = self.socket_wrapper(sock, self); end if not sock then return nil, err; end - if self.socket_wrapper then sock = self.socket_wrapper(sock, self); end sock:settimeout(0); -- todo: attempt to use a random port, fallback to 0 sock:setsockname('*', 0); |