mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
net.server_select: remove unused one-letter loop variables [luacheck]
This commit is contained in:
parent
ddccdcd00d
commit
7a87176df8
1 changed files with 2 additions and 2 deletions
|
@ -864,7 +864,7 @@ loop = function(once) -- this is the main loop of the program
|
|||
local next_timer_time = math_huge;
|
||||
repeat
|
||||
local read, write, err = socket_select( _readlist, _sendlist, math_min(_selecttimeout, next_timer_time) )
|
||||
for i, socket in ipairs( write ) do -- send data waiting in writequeues
|
||||
for _, socket in ipairs( write ) do -- send data waiting in writequeues
|
||||
local handler = _socketlist[ socket ]
|
||||
if handler then
|
||||
handler.sendbuffer( )
|
||||
|
@ -873,7 +873,7 @@ loop = function(once) -- this is the main loop of the program
|
|||
out_put "server.lua: found no handler and closed socket (writelist)" -- this should not happen
|
||||
end
|
||||
end
|
||||
for i, socket in ipairs( read ) do -- receive data
|
||||
for _, socket in ipairs( read ) do -- receive data
|
||||
local handler = _socketlist[ socket ]
|
||||
if handler then
|
||||
handler.readbuffer( )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue