prosody/net
Kim Alvefur af9aa9349a net.server_epoll: Fix reporting of socket connect timeout
If the underlying TCP connection times out before the write timeout
kicks in, end up here with err="timeout", which the following code
treats as a minor issue.

Then, due to epoll apparently returning the EPOLLOUT (writable) event
too, we go on and try to write to the socket (commonly stream headers).
This fails because the socket is closed, which becomes the error
returned up the stack to the rest of Prosody.

This also trips the 'onconnect' signal, which has effects on various
things, such as the net.connect state machine. Probably undesirable
effects.

With this, we instead return "connection timeout", like server_event,
and destroy the connection handle properly. And then nothing else
happens because the connection has been destroyed.
2021-06-07 17:37:14 +02:00
..
http net.http.server: Split out method for sending only the header 2021-04-24 10:50:24 +02:00
resolvers net.resolvers.basic: Fix completion condition when IPv6 is disabled 2021-03-15 23:09:42 +01:00
websocket Merge 0.11->trunk 2020-10-15 14:25:09 +01:00
adns.lua Merge 0.11->trunk 2021-01-12 19:19:15 +01:00
connect.lua net.connect: Remove TODO about use_ipv4/6 done in 3bfb20be844c 2020-06-22 01:42:18 +02:00
cqueues.lua net.cqueues: Fix resuming after timeouts 2020-07-08 22:01:19 +02:00
dns.lua net.dns: Disable jitter for default resolver (used by blocking dns.lookup() calls) 2020-06-28 12:02:10 +01:00
http.lua net.http: track time of request for debug/stats purposes 2020-12-09 13:54:21 +00:00
httpserver.lua net.httpserver: Make function local, fixes loading since there is no environment [luacheck] 2018-03-23 13:20:19 +01:00
server.lua net.server: Switch to epoll backend by default 2020-06-01 13:43:35 +01:00
server_epoll.lua net.server_epoll: Fix reporting of socket connect timeout 2021-06-07 17:37:14 +02:00
server_event.lua net.server: Backport client parts of SNI support from trunk (#409) 2020-08-17 23:01:14 +02:00
server_select.lua net.server_select: Fix traceback (thanks eta) 2020-08-23 22:19:29 +02:00
unbound.lua net.unbound: Fix to initialize under prosodyctl 2021-01-21 23:33:59 +01:00
websocket.lua net.websocket: Fix traceback in case of ondisconnect being called twice 2019-11-26 15:29:01 +00:00