Software / code / prosody
Comparison
net/server_select.lua @ 5645:ae079d57af2e
Merge 0.9->trunk
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Wed, 05 Jun 2013 21:36:29 +0100 |
| parent | 5633:d999027577ed |
| parent | 5642:5862bb57a3f1 |
| child | 5664:4f499eb63c04 |
comparison
equal
deleted
inserted
replaced
| 5641:92ffddd02c96 | 5645:ae079d57af2e |
|---|---|
| 148 _checkinterval = 30 -- interval in secs to check idle clients | 148 _checkinterval = 30 -- interval in secs to check idle clients |
| 149 _sendtimeout = 60000 -- allowed send idle time in secs | 149 _sendtimeout = 60000 -- allowed send idle time in secs |
| 150 _readtimeout = 6 * 60 * 60 -- allowed read idle time in secs | 150 _readtimeout = 6 * 60 * 60 -- allowed read idle time in secs |
| 151 | 151 |
| 152 local is_windows = package.config:sub(1,1) == "\\" -- check the directory separator, to detemine whether this is Windows | 152 local is_windows = package.config:sub(1,1) == "\\" -- check the directory separator, to detemine whether this is Windows |
| 153 _maxfd = luasocket._SETSIZE or (is_windows and math.huge) or 1024 -- max fd number, limit to 1024 by default to prevent glibc buffer overflow, but not on Windows | 153 _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 |
| 154 _maxselectlen = luasocket._SETSIZE or 1024 -- But this still applies on Windows | 154 _maxselectlen = luasocket._SETSIZE or 1024 -- But this still applies on Windows |
| 155 | 155 |
| 156 _maxsslhandshake = 30 -- max handshake round-trips | 156 _maxsslhandshake = 30 -- max handshake round-trips |
| 157 | 157 |
| 158 ----------------------------------// PRIVATE //-- | 158 ----------------------------------// PRIVATE //-- |