diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-03-24 22:46:57 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-03-24 22:46:57 +0000 |
commit | ef00aa87e4adb5fbe1779e5cf67bed272d02589e (patch) | |
tree | 945df31874648d8bde5eb8c7bd5790fd82e0b12f | |
parent | 808ba7e691f4fbc36a380204ea4cce1c46d9b69b (diff) | |
download | prosody-ef00aa87e4adb5fbe1779e5cf67bed272d02589e.tar.gz prosody-ef00aa87e4adb5fbe1779e5cf67bed272d02589e.zip |
net.server_event: Bump timeout values up somewhat
-rw-r--r-- | net/server_event.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/server_event.lua b/net/server_event.lua index b767cb20..15fe4b3b 100644 --- a/net/server_event.lua +++ b/net/server_event.lua @@ -21,12 +21,12 @@ local LAST_MODIFIED = "2009/11/20" local cfg = { MAX_CONNECTIONS = 100000, -- max per server connections (use "ulimit -n" on *nix) MAX_HANDSHAKE_ATTEMPS = 1000, -- attemps to finish ssl handshake - HANDSHAKE_TIMEOUT = 30, -- timout in seconds per handshake attemp + HANDSHAKE_TIMEOUT = 60, -- timout in seconds per handshake attemp MAX_READ_LENGTH = 1024 * 1024 * 1024 * 1024, -- max bytes allowed to read from sockets MAX_SEND_LENGTH = 1024 * 1024 * 1024 * 1024, -- max bytes size of write buffer (for writing on sockets) ACCEPT_DELAY = 10, -- seconds to wait until the next attemp of a full server to accept - READ_TIMEOUT = 60 * 30, -- timeout in seconds for read data from socket - WRITE_TIMEOUT = 30, -- timeout in seconds for write data on socket + READ_TIMEOUT = 60 * 60 * 6, -- timeout in seconds for read data from socket + WRITE_TIMEOUT = 180, -- timeout in seconds for write data on socket CONNECT_TIMEOUT = 20, -- timeout in seconds for connection attemps CLEAR_DELAY = 5, -- seconds to wait for clearing interface list (and calling ondisconnect listeners) DEBUG = true, -- show debug messages |