aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2013-06-02 16:23:19 -0400
committerWaqas Hussain <waqas20@gmail.com>2013-06-02 16:23:19 -0400
commit3f2cc61c6fdd5e6bab36247cc33f5610bfbcee9c (patch)
tree78fecfb93c1cb05159974fb1172696464c2e2505 /net
parent790162a580320ef2b61e1d1d4553ab8b4465c3d7 (diff)
downloadprosody-3f2cc61c6fdd5e6bab36247cc33f5610bfbcee9c.tar.gz
prosody-3f2cc61c6fdd5e6bab36247cc33f5610bfbcee9c.zip
net.server_select: Ensure _maxfd = math.huge on Windows, always.
Diffstat (limited to 'net')
-rw-r--r--net/server_select.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/server_select.lua b/net/server_select.lua
index 7eb330a8..a6e91d0b 100644
--- a/net/server_select.lua
+++ b/net/server_select.lua
@@ -150,7 +150,7 @@ _sendtimeout = 60000 -- allowed send idle time in secs
_readtimeout = 6 * 60 * 60 -- allowed read idle time in secs
local is_windows = package.config:sub(1,1) == "\\" -- check the directory separator, to detemine whether this is Windows
-_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
+_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
_maxselectlen = luasocket._SETSIZE or 1024 -- But this still applies on Windows
_maxsslhandshake = 30 -- max handshake round-trips