diff options
author | Kim Alvefur <zash@zash.se> | 2019-05-03 20:54:24 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-05-03 20:54:24 +0200 |
commit | f65c017ee107f86b353d5931e85a70e8c6067f1f (patch) | |
tree | 9c43d95649714eb15f29bd1d99b00c9cbb2fcf8d /net/server_select.lua | |
parent | 6d6eefea93711449a6a72ca63b597c9016f19b58 (diff) | |
download | prosody-f65c017ee107f86b353d5931e85a70e8c6067f1f.tar.gz prosody-f65c017ee107f86b353d5931e85a70e8c6067f1f.zip |
Fix various spelling mistakes [codespell]
Diffstat (limited to 'net/server_select.lua')
-rw-r--r-- | net/server_select.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/server_select.lua b/net/server_select.lua index 5d554655..e14c126e 100644 --- a/net/server_select.lua +++ b/net/server_select.lua @@ -124,7 +124,7 @@ local _maxsslhandshake _server = { } -- key = port, value = table; list of listening servers _readlist = { } -- array with sockets to read from -_sendlist = { } -- arrary with sockets to write to +_sendlist = { } -- array with sockets to write to _timerlist = { } -- array of timer functions _socketlist = { } -- key = socket, value = wrapped socket (handlers) _readtimes = { } -- key = handler, value = timestamp of last data reading @@ -150,7 +150,7 @@ _checkinterval = 30 -- interval in secs to check idle clients _sendtimeout = 60000 -- allowed send idle time in secs _readtimeout = 14 * 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 +local is_windows = package.config:sub(1,1) == "\\" -- check the directory separator, to determine whether this is 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 |