Module: kamailio Branch: master Commit: ebbe6268de3aff6ba830f1722942c2f10c6de2f3 URL: https://github.com/kamailio/kamailio/commit/ebbe6268de3aff6ba830f1722942c2f1...
Author: Kamailio Dev kamailio.dev@kamailio.org Committer: Kamailio Dev kamailio.dev@kamailio.org Date: 2022-07-04T15:46:14+02:00
modules: readme files regenerated - ndb_redis ... [skip ci]
---
Modified: src/modules/ndb_redis/README Modified: src/modules/topos/README
---
Diff: https://github.com/kamailio/kamailio/commit/ebbe6268de3aff6ba830f1722942c2f1... Patch: https://github.com/kamailio/kamailio/commit/ebbe6268de3aff6ba830f1722942c2f1...
---
diff --git a/src/modules/ndb_redis/README b/src/modules/ndb_redis/README index 2ca2c52c58..46081b7ec8 100644 --- a/src/modules/ndb_redis/README +++ b/src/modules/ndb_redis/README @@ -50,6 +50,7 @@ Carsten Bock 3.7. disable_time (integer) 3.8. flush_on_reconnect (integer) 3.9. allow_dynamic_nodes (integer) + 3.10. debug (integer)
4. Functions
@@ -69,9 +70,10 @@ Carsten Bock 1.7. Set disable_time parameter 1.8. Set flush_on_reconnect parameter 1.9. Set allow_dynamic_nodes parameter - 1.10. redis_cmd usage - 1.11. redis_execute usage - 1.12. redis_free usage + 1.10. Set debug parameter + 1.11. redis_cmd usage + 1.12. redis_execute usage + 1.13. redis_free usage
Chapter 1. Admin Guide
@@ -94,6 +96,7 @@ Chapter 1. Admin Guide 3.7. disable_time (integer) 3.8. flush_on_reconnect (integer) 3.9. allow_dynamic_nodes (integer) + 3.10. debug (integer)
4. Functions
@@ -138,6 +141,7 @@ Chapter 1. Admin Guide 3.7. disable_time (integer) 3.8. flush_on_reconnect (integer) 3.9. allow_dynamic_nodes (integer) + 3.10. debug (integer)
3.1. server (str)
@@ -319,6 +323,18 @@ modparam("ndb_redis", "cluster", 1) modparam("ndb_redis", "allow_dynamic_nodes", 1) ...
+3.10. debug (integer) + + Set the verbosity level for some of the log messages. It has to be a + log level value. + + Default value is “3” (L_DBG). + + Example 1.10. Set debug parameter +... +modparam("ndb_redis", "debug", 1) +... + 4. Functions
4.1. redis_cmd(srvname, command, ..., replyid) @@ -359,7 +375,7 @@ modparam("ndb_redis", "allow_dynamic_nodes", 1) value. The key can be: rpl_str, rpl_arr, rpl_int, rpl_err, rpl_sts, rpl_nil.
- Example 1.10. redis_cmd usage + Example 1.11. redis_cmd usage ... if(redis_cmd("srvN", "INCR cnt", "r")) { # success - the incremented value is in $redis(r=>value) @@ -438,7 +454,7 @@ if (redis_cmd("srvN", "EXEC", "r")) { If cluster parameter is set to 1, this function will log an error and do nothing.
- Example 1.11. redis_execute usage + Example 1.12. redis_execute usage ... After several redis command calls: redis_pipe_cmd("srvA", "SET foo bar", "r1"); @@ -486,7 +502,7 @@ d commands. The call is not necessary function. When ndb_redis module closes, all pending replies are freed automatically.
- Example 1.12. redis_free usage + Example 1.13. redis_free usage ... After a redis command call: redis_cmd("srvN", "INCR cnt", "r"); diff --git a/src/modules/topos/README b/src/modules/topos/README index 4c6c4532ad..b63965cd5d 100644 --- a/src/modules/topos/README +++ b/src/modules/topos/README @@ -143,11 +143,13 @@ Chapter 1. Admin Guide to be loaded (tune the module parameters if needed).
It also works for SIP MESSAGE or other requests that do not create a - dialog -- record_route() must be used for them as well, the headers are - not going to be in the messages sent to the network, they are needed to - know local addresses used to communicate with each side. This module is - designed to work for presence (SUBSCRIBE-based) dialogs too. The - REGISTER and PUBLISH requests are skipped from processing by this + dialog (e.g., OPTIONS) -- record_route() must be used for them as well, + the headers are not going to be in the messages sent to the network, + they are needed to know local addresses used to communicate with each + side. This module is designed to work for presence (SUBSCRIBE-based) + dialogs too. + + The REGISTER and PUBLISH requests are skipped from processing by this module, expected to be terminated on a local SIP server.
2. Dependencies