]> git.ipfire.org Git - thirdparty/knot-dns.git/commitdiff
mod-probe: increase rate limit to 100000
authorDaniel Salzman <daniel.salzman@nic.cz>
Thu, 28 Jul 2022 16:47:24 +0000 (18:47 +0200)
committerDaniel Salzman <daniel.salzman@nic.cz>
Thu, 28 Jul 2022 16:49:18 +0000 (18:49 +0200)
src/knot/modules/probe/probe.c
src/knot/modules/probe/probe.rst

index 01848195a76aaaee980798b34f2b8ad2ca5e5616..711dbe1bbb15ff1c9081e2ce41e09aa316a85102 100644 (file)
@@ -38,7 +38,7 @@
 const yp_item_t probe_conf[] = {
        { MOD_PATH,     YP_TSTR, YP_VNONE },
        { MOD_CHANNELS, YP_TINT, YP_VINT = { 1, UINT16_MAX, 1 } },
-       { MOD_MAX_RATE, YP_TINT, YP_VINT = { 0, UINT32_MAX, 1000 } },
+       { MOD_MAX_RATE, YP_TINT, YP_VINT = { 0, UINT32_MAX, 100000 } },
        { NULL }
 };
 
index b9bbd34ab7dd7d07fffa79ad8faf93f5d915023e..a7aa7404eab1f0b574c45f66303cee293725e787 100644 (file)
@@ -86,4 +86,4 @@ Maximum number of queries/replies per second the probe is allowed to transfer.
 If the limit is exceeded, the over-limit traffic is ignored. Zero value means
 no limit.
 
-*Default:* ``1000``
+*Default:* ``100000`` (one hundred thousand)