Comparison

net/server_select.lua @ 5554:e91db0aac408

Merge 0.9->trunk
author Matthew Wild <mwild1@gmail.com>
date Wed, 01 May 2013 13:45:42 +0100
parent 5548:c5d1c35c93f4
child 5632:8a2456f1f117
child 5642:5862bb57a3f1
comparison
equal deleted inserted replaced
5543:d3f5165c4113 5554:e91db0aac408
147 147
148 _checkinterval = 1200000 -- interval in secs to check idle clients 148 _checkinterval = 1200000 -- 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 _maxfd = luasocket._SETSIZE or 1024 -- We should ignore this on Windows. Perhaps by simply setting it to math.huge or something. 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 _maxselectlen = luasocket._SETSIZE or 1024 -- But this still applies on Windows 154 _maxselectlen = luasocket._SETSIZE or 1024 -- But this still applies on Windows
154 155
155 _maxsslhandshake = 30 -- max handshake round-trips 156 _maxsslhandshake = 30 -- max handshake round-trips
156 157
157 ----------------------------------// PRIVATE //-- 158 ----------------------------------// PRIVATE //--