diff options
author | Kim Alvefur <zash@zash.se> | 2016-08-22 17:13:39 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-08-22 17:13:39 +0200 |
commit | 0397de93491eccc30401f00020a15977a74496c9 (patch) | |
tree | ce2409a32e893ac002a7f3a41dbc1c5c6807d42b /net | |
parent | e09f97752aedf62045e5832c64cd24fe1a4f3a8f (diff) | |
download | prosody-0397de93491eccc30401f00020a15977a74496c9.tar.gz prosody-0397de93491eccc30401f00020a15977a74496c9.zip |
net.server_epoll: Comments
Diffstat (limited to 'net')
-rw-r--r-- | net/server_epoll.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/net/server_epoll.lua b/net/server_epoll.lua index 542441f4..c3b9974c 100644 --- a/net/server_epoll.lua +++ b/net/server_epoll.lua @@ -85,7 +85,8 @@ local function runtimers(next_delay) for i = #timers, 1, -1 do local timer = timers[i]; local t, f = timer[1], timer[2]; - local now = gettime(); -- inside or before the loop? + -- Get time for every iteration to increase accuracy + local now = gettime(); if t > now then -- This timer should not fire yet local diff = t - now; @@ -96,6 +97,8 @@ local function runtimers(next_delay) end local new_timeout = f(now); if new_timeout then + -- Schedlue for 'delay' from the time actually sheduled, + -- not from now, in order to prevent timer drift. timer[1] = t + new_timeout; resort_timers = true; else @@ -487,6 +490,7 @@ function interface:resume() self:setflags(true); end +-- Pause connection for some time function interface:pausefor(t) if self._pausefor then self._pausefor:close(); |