mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Make API-compatible with util.timer
This commit is contained in:
parent
99b26ab45c
commit
927ef9f2f2
1 changed files with 3 additions and 3 deletions
|
@ -99,9 +99,9 @@ local function reschedule(t, time)
|
|||
end
|
||||
|
||||
-- Add relative timer
|
||||
local function addtimer(timeout, f)
|
||||
local function addtimer(timeout, f, param)
|
||||
local time = monotonic() + timeout;
|
||||
local timer = { time, f, close = closetimer, reschedule = reschedule, id = nil };
|
||||
local timer = { time, f, param, close = closetimer, reschedule = reschedule, id = nil };
|
||||
timer.id = timers:insert(timer, time);
|
||||
return timer;
|
||||
end
|
||||
|
@ -121,7 +121,7 @@ local function runtimers(next_delay, min_wait)
|
|||
end
|
||||
|
||||
local _, timer = timers:pop();
|
||||
local ok, ret = pcall(timer[2], now);
|
||||
local ok, ret = pcall(timer[2], now, timer, timer[3]);
|
||||
if ok and type(ret) == "number" then
|
||||
local next_time = elapsed+ret;
|
||||
timer[1] = next_time;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue