Software /
code /
prosody
Changeset
5642:5862bb57a3f1
net.server_select: Ensure _maxfd = math.huge on Windows, always.
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Sun, 02 Jun 2013 16:23:19 -0400 |
parents | 5639:7a0e19e649b7 |
children | 5643:e612e1887e39 |
files | net/server_select.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/net/server_select.lua Sun Jun 02 19:25:53 2013 +0200 +++ b/net/server_select.lua Sun Jun 02 16:23:19 2013 -0400 @@ -150,7 +150,7 @@ _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