mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
net.adns: Prevent empty packets from being sent on "connect" (fix #1619)
Thanks Ge0rG for testing
This commit is contained in:
parent
0f3dae441b
commit
0303e09dbb
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue