Comparison

net/server_event.lua @ 8983:23f66f04e216

net.server: Set default read timeout to 14 minutes (fixes #971)
author Kim Alvefur <zash@zash.se>
date Fri, 06 Jul 2018 19:02:19 +0200
parent 8781:53178b6ba589
child 9385:58fe099043ed
comparison
equal deleted inserted replaced
8982:4a576c39bb2f 8983:23f66f04e216
24 HANDSHAKE_TIMEOUT = 60, -- timeout in seconds per handshake attempt 24 HANDSHAKE_TIMEOUT = 60, -- timeout in seconds per handshake attempt
25 MAX_READ_LENGTH = 1024 * 1024 * 1024 * 1024, -- max bytes allowed to read from sockets 25 MAX_READ_LENGTH = 1024 * 1024 * 1024 * 1024, -- max bytes allowed to read from sockets
26 MAX_SEND_LENGTH = 1024 * 1024 * 1024 * 1024, -- max bytes size of write buffer (for writing on sockets) 26 MAX_SEND_LENGTH = 1024 * 1024 * 1024 * 1024, -- max bytes size of write buffer (for writing on sockets)
27 ACCEPT_QUEUE = 128, -- might influence the length of the pending sockets queue 27 ACCEPT_QUEUE = 128, -- might influence the length of the pending sockets queue
28 ACCEPT_DELAY = 10, -- seconds to wait until the next attempt of a full server to accept 28 ACCEPT_DELAY = 10, -- seconds to wait until the next attempt of a full server to accept
29 READ_TIMEOUT = 60 * 60 * 6, -- timeout in seconds for read data from socket 29 READ_TIMEOUT = 14 * 60, -- timeout in seconds for read data from socket
30 WRITE_TIMEOUT = 180, -- timeout in seconds for write data on socket 30 WRITE_TIMEOUT = 180, -- timeout in seconds for write data on socket
31 CONNECT_TIMEOUT = 20, -- timeout in seconds for connection attempts 31 CONNECT_TIMEOUT = 20, -- timeout in seconds for connection attempts
32 CLEAR_DELAY = 5, -- seconds to wait for clearing interface list (and calling ondisconnect listeners) 32 CLEAR_DELAY = 5, -- seconds to wait for clearing interface list (and calling ondisconnect listeners)
33 READ_RETRY_DELAY = 1e-06, -- if, after reading, there is still data in buffer, wait this long and continue reading 33 READ_RETRY_DELAY = 1e-06, -- if, after reading, there is still data in buffer, wait this long and continue reading
34 DEBUG = true, -- show debug messages 34 DEBUG = true, -- show debug messages