Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

secfilter: cleanup old data after a reload by timer function #3271

Merged
merged 2 commits into from
Oct 22, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
41 changes: 41 additions & 0 deletions src/modules/secfilter/doc/secfilter_admin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,47 @@
</programlisting>
</example>
</section>

<section id="secfilter.p.reload_delta">
<title><varname>reload_delta</varname> (integer)</title>

<para>
The number of seconds that have to be waited before executing a new RPC reload.
By default there is a rate limiting of maximum one reload in five seconds.

If set to <emphasis>0</emphasis>, no rate limit is configured.
</para>
<para><emphasis> Default value is 5</emphasis></para>

<example>
<title>Set <varname>reload_delta</varname> parameter</title>

<programlisting format="linespecific">
...
modparam("secfilter", "reload_delta", 1)
...
</programlisting>
</example>
</section>

<section id="secfilter.p.cleanup_interval">
<title><varname>cleanup_interval</varname> (integer)</title>

<para>
The number of seconds that have to be wait before cleanup the previous values from memory after a RPC reload.
</para>
<para><emphasis> Default value is 60</emphasis></para>

<example>
<title>Set <varname>cleanup_interval</varname> parameter</title>

<programlisting format="linespecific">
...
modparam("secfilter", "cleanup_interval", 120)
...
</programlisting>
</example>
</section>
</section>

<section>
Expand Down