Module: kamailio Branch: master Commit: 5f55e27aae585c64d3d7983439354b6cc52c26e0 URL: https://github.com/kamailio/kamailio/commit/5f55e27aae585c64d3d7983439354b6c...
Author: Kamailio Dev kamailio.dev@kamailio.org Committer: Kamailio Dev kamailio.dev@kamailio.org Date: 2025-07-24T14:31:10+02:00
modules: readme files regenerated - tls ... [skip ci]
---
Modified: src/modules/tls/README
---
Diff: https://github.com/kamailio/kamailio/commit/5f55e27aae585c64d3d7983439354b6c... Patch: https://github.com/kamailio/kamailio/commit/5f55e27aae585c64d3d7983439354b6c...
---
diff --git a/src/modules/tls/README b/src/modules/tls/README index b6f8a0c0ba2..ccb67fd4bc3 100644 --- a/src/modules/tls/README +++ b/src/modules/tls/README @@ -1661,22 +1661,23 @@ verify_client = optional_no_ca Control the TLS key logging functionality, available for libssl version greater than 1.1.0. Its value is composed from bitwise values (can be made as sum of them): - * 0 - keys logging inactive - * 1 (bit 1) - keys logging active - * 2 (bit 2) - write keys to NOTICE log - * 4 (bit 3) - write keys to file + * 0 - keys logging not enabled + * 1 (bit 1) - initialise keys logging + * 2 (bit 2) - keys logging active + * 4 (bit 3) - write keys to NOTICE log + * 8 (bit 4) - write keys to file
The default value: 0.
Example 1.52. Set keylog_mode parameter ... -modparam("tls", "keylog_mode", 7) +modparam("tls", "keylog_mode", 15) ...
10.43. keylog_file (str)
Path to the file where to write the TLS keys. The values are appended - to the content of the file. The value 4 (bit 3) has to be set to + to the content of the file. The value 8 (bit 4) has to be set to keylog_mode parameter.
The default value: NULL.