Software / code / prosody
Comparison
net/server_select.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 |
|---|---|
| 144 _maxsendlen = 51000 * 1024 -- max len of send buffer | 144 _maxsendlen = 51000 * 1024 -- max len of send buffer |
| 145 _maxreadlen = 25000 * 1024 -- max len of read buffer | 145 _maxreadlen = 25000 * 1024 -- max len of read buffer |
| 146 | 146 |
| 147 _checkinterval = 30 -- interval in secs to check idle clients | 147 _checkinterval = 30 -- interval in secs to check idle clients |
| 148 _sendtimeout = 60000 -- allowed send idle time in secs | 148 _sendtimeout = 60000 -- allowed send idle time in secs |
| 149 _readtimeout = 6 * 60 * 60 -- allowed read idle time in secs | 149 _readtimeout = 14 * 60 -- allowed read idle time in secs |
| 150 | 150 |
| 151 local is_windows = package.config:sub(1,1) == "\\" -- check the directory separator, to detemine whether this is Windows | 151 local is_windows = package.config:sub(1,1) == "\\" -- check the directory separator, to detemine whether this is Windows |
| 152 _maxfd = (is_windows and math.huge) or luasocket._SETSIZE or 1024 -- max fd number, limit to 1024 by default to prevent glibc buffer overflow, but not on Windows | 152 _maxfd = (is_windows and math.huge) or luasocket._SETSIZE or 1024 -- max fd number, limit to 1024 by default to prevent glibc buffer overflow, but not on Windows |
| 153 _maxselectlen = luasocket._SETSIZE or 1024 -- But this still applies on Windows | 153 _maxselectlen = luasocket._SETSIZE or 1024 -- But this still applies on Windows |
| 154 | 154 |