mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_limits: Fix indentation
Appears to have been messed up in 60e113f3682f
This commit is contained in:
parent
ce1056dc43
commit
a6571e3ef3
1 changed files with 5 additions and 5 deletions
|
@ -51,18 +51,18 @@ end
|
|||
local default_filter_set = {};
|
||||
|
||||
function default_filter_set.bytes_in(bytes, session)
|
||||
local sess_throttle = session.throttle;
|
||||
if sess_throttle then
|
||||
local ok, balance, outstanding = sess_throttle:poll(#bytes, true);
|
||||
local sess_throttle = session.throttle;
|
||||
if sess_throttle then
|
||||
local ok, balance, outstanding = sess_throttle:poll(#bytes, true);
|
||||
if not ok then
|
||||
session.log("debug", "Session over rate limit (%d) with %d (by %d), pausing", sess_throttle.max, #bytes, outstanding);
|
||||
session.log("debug", "Session over rate limit (%d) with %d (by %d), pausing", sess_throttle.max, #bytes, outstanding);
|
||||
outstanding = ceil(outstanding);
|
||||
session.conn:pause(); -- Read no more data from the connection until there is no outstanding data
|
||||
local outstanding_data = bytes:sub(-outstanding);
|
||||
bytes = bytes:sub(1, #bytes-outstanding);
|
||||
timer.add_task(limits_resolution, function ()
|
||||
if not session.conn then return; end
|
||||
if sess_throttle:peek(#outstanding_data) then
|
||||
if sess_throttle:peek(#outstanding_data) then
|
||||
session.log("debug", "Resuming paused session");
|
||||
session.conn:resume();
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue