Module: kamailio Branch: master Commit: 220cc9633092f166611432c704796353da46668c URL: https://github.com/kamailio/kamailio/commit/220cc9633092f166611432c704796353...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2023-01-24T09:29:32+01:00
tls: docs updated to rename lock_mode to init_mode
---
Modified: src/modules/tls/doc/params.xml
---
Diff: https://github.com/kamailio/kamailio/commit/220cc9633092f166611432c704796353... Patch: https://github.com/kamailio/kamailio/commit/220cc9633092f166611432c704796353...
---
diff --git a/src/modules/tls/doc/params.xml b/src/modules/tls/doc/params.xml index d491a67cca..49f1d1f85f 100644 --- a/src/modules/tls/doc/params.xml +++ b/src/modules/tls/doc/params.xml @@ -1032,10 +1032,15 @@ modparam("tls", "renegotiation", 1) </example> </section>
- <section id="tls.p.lock_mode"> - <title><varname>lock_mode</varname> (int)</title> + <section id="tls.p.init_mode"> + <title><varname>init_mode</varname> (int)</title> <para> - If set to 1, the memory management operations registered for TLS are + Allow setting flags that control how the module is initialized and works + at runtime. Many flags (bits) can be set at the same time (set the + parameter to the sum of corresponding values). + </para> + <para> + If flag (bit) 1 is set (value 1), the memory management operations registered for TLS are wapped within a pthread mutex lock. It can be useful with newer versions of libssl and libcrypto, which have a more pthread multi-threading oriented design. @@ -1044,10 +1049,10 @@ modparam("tls", "renegotiation", 1) Default value is 0. </para> <example> - <title>Set <varname>lock_mode</varname> parameter</title> + <title>Set <varname>init_mode</varname> parameter</title> <programlisting> ... -modparam("tls", "lock_mode", 1) +modparam("tls", "init_mode", 1) ... </programlisting> </example>