net.adns: Prevent empty packets from being sent on "connect" (fix #1619)

Thanks Ge0rG for testing
This commit is contained in:
Kim Alvefur 2021-01-12 13:25:08 +01:00
parent 5cf3eea245
commit f36531b53a

View file

@ -50,6 +50,11 @@ local function new_async_socket(sock, resolver)
if not handler then
return nil, err;
end
if handler.set then
-- server_epoll: only watch for incoming data
-- avoids sending empty packet on first 'onwritable' event
handler:set(true, false);
end
handler.settimeout = function () end
handler.setsockname = function (_, ...) return sock:setsockname(...); end