# HG changeset patch
# User Matthew Wild <mwild1@gmail.com>
# Date 1620739379 -3600
# Node ID db8e41eb6effe209e238042d72d891a2dedb4f25
# Parent  b0d8920ed5e5894cd0135575eec2d0e73340ce35
mod_limits: Use default limits if none configured

diff -r b0d8920ed5e5 -r db8e41eb6eff plugins/mod_limits.lua
--- a/plugins/mod_limits.lua	Tue May 11 14:17:12 2021 +0100
+++ b/plugins/mod_limits.lua	Tue May 11 14:22:59 2021 +0100
@@ -39,7 +39,16 @@
 
 -- 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] = {