Module: kamailio
Branch: master
Commit: d0cd1905652e1aeb0be92c5a723b5d42f4171a13
URL:
https://github.com/kamailio/kamailio/commit/d0cd1905652e1aeb0be92c5a723b5d4…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2023-01-24T09:31:26+01:00
modules: readme files regenerated - tls ... [skip ci]
---
Modified: src/modules/tls/README
---
Diff:
https://github.com/kamailio/kamailio/commit/d0cd1905652e1aeb0be92c5a723b5d4…
Patch:
https://github.com/kamailio/kamailio/commit/d0cd1905652e1aeb0be92c5a723b5d4…
---
diff --git a/src/modules/tls/README b/src/modules/tls/README
index 94c3a72d80..21740840b4 100644
--- a/src/modules/tls/README
+++ b/src/modules/tls/README
@@ -61,7 +61,7 @@ Olle E. Johansson
10.27. session_cache (boolean)
10.28. session_id (str)
10.29. renegotiation (boolean)
- 10.30. lock_mode (int)
+ 10.30. init_mode (int)
10.31. config (string)
10.32. xavp_cfg (string)
10.33. event_callback (str)
@@ -136,7 +136,7 @@ Olle E. Johansson
1.38. Set session_cache parameter
1.39. Set session_id parameter
1.40. Set renegotiation parameter
- 1.41. Set lock_mode parameter
+ 1.41. Set init_mode parameter
1.42. Sample TLS Config File
1.43. Set config parameter
1.44. Change and reload the TLS configuration at runtime
@@ -193,7 +193,7 @@ Chapter 1. Admin Guide
10.27. session_cache (boolean)
10.28. session_id (str)
10.29. renegotiation (boolean)
- 10.30. lock_mode (int)
+ 10.30. init_mode (int)
10.31. config (string)
10.32. xavp_cfg (string)
10.33. event_callback (str)
@@ -624,7 +624,7 @@ Place holder
10.27. session_cache (boolean)
10.28. session_id (str)
10.29. renegotiation (boolean)
- 10.30. lock_mode (int)
+ 10.30. init_mode (int)
10.31. config (string)
10.32. xavp_cfg (string)
10.33. event_callback (str)
@@ -1267,18 +1267,22 @@ modparam("tls", "session_id",
"my-session-id-context")
modparam("tls", "renegotiation", 1)
...
-10.30. lock_mode (int)
+10.30. init_mode (int)
- If set to 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.
+ 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).
+
+ 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.
Default value is 0.
- Example 1.41. Set lock_mode parameter
+ Example 1.41. Set init_mode parameter
...
-modparam("tls", "lock_mode", 1)
+modparam("tls", "init_mode", 1)
...
10.31. config (string)