mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
mod_limits: Use default limits if none configured
This commit is contained in:
parent
6d15e34180
commit
6f6c807bdf
1 changed files with 10 additions and 1 deletions
|
@ -39,7 +39,16 @@ end
|
|||
|
||||
-- Process config option into limits table:
|
||||
-- limits = { c2s = { bytes_per_second = X, burst_seconds = Y } }
|
||||
local limits = {};
|
||||
local limits = {
|
||||
c2s = {
|
||||
bytes_per_second = 10 * 1024;
|
||||
burst_seconds = 2;
|
||||
};
|
||||
s2sin = {
|
||||
bytes_per_second = 30 * 1024;
|
||||
burst_seconds = 2;
|
||||
};
|
||||
};
|
||||
|
||||
for sess_type, sess_limits in pairs(limits_cfg) do
|
||||
limits[sess_type] = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue