Module: kamailio
Branch: 5.7
Commit: 3e510ac68a4b9bc99b6ade5cb7cc862adcbb9eb9
URL:
https://github.com/kamailio/kamailio/commit/3e510ac68a4b9bc99b6ade5cb7cc862…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2023-06-19T14:17:02+02:00
modules: readme files regenerated - modules ... [skip ci]
---
Modified: src/modules/ims_usrloc_scscf/README
Modified: src/modules/mqueue/README
---
Diff:
https://github.com/kamailio/kamailio/commit/3e510ac68a4b9bc99b6ade5cb7cc862…
Patch:
https://github.com/kamailio/kamailio/commit/3e510ac68a4b9bc99b6ade5cb7cc862…
---
diff --git a/src/modules/ims_usrloc_scscf/README b/src/modules/ims_usrloc_scscf/README
index 384d9ee6742..d128b226b00 100644
--- a/src/modules/ims_usrloc_scscf/README
+++ b/src/modules/ims_usrloc_scscf/README
@@ -39,7 +39,7 @@ Yasin Caner
3.11. matching_mode (int)
3.12. cseq_delay (int)
3.13. fetch_rows(int)
- 3.14. hash_size (string)
+ 3.14. hash_size (int)
3.15. subs_hash_size (int)
3.16. contacts_hash_size (integer)
3.17. nat_bflag (integer)
@@ -108,7 +108,7 @@ Chapter 1. Admin Guide
3.11. matching_mode (int)
3.12. cseq_delay (int)
3.13. fetch_rows(int)
- 3.14. hash_size (string)
+ 3.14. hash_size (int)
3.15. subs_hash_size (int)
3.16. contacts_hash_size (integer)
3.17. nat_bflag (integer)
@@ -157,7 +157,7 @@ Chapter 1. Admin Guide
3.11. matching_mode (int)
3.12. cseq_delay (int)
3.13. fetch_rows(int)
- 3.14. hash_size (string)
+ 3.14. hash_size (int)
3.15. subs_hash_size (int)
3.16. contacts_hash_size (integer)
3.17. nat_bflag (integer)
@@ -315,7 +315,7 @@ st/scscf")
...
modparam("ims_usrloc_scscf", "fetch_rows", 3000)
-3.14. hash_size (string)
+3.14. hash_size (int)
The number of entries of the hash table used by usrloc
diff --git a/src/modules/mqueue/README b/src/modules/mqueue/README
index a8981a68aee..3db56e8f54b 100644
--- a/src/modules/mqueue/README
+++ b/src/modules/mqueue/README
@@ -176,12 +176,12 @@ val character varying(4096) DEFAULT "" NOT NULL
+ size: size of the queue. Specifies the maximum number of items
in queue. If exceeded the oldest one is removed. If not set
the queue will be limitless.
- + dbmode: If set to 1, the content of the queue is written to
- database table when the SIP server is stopped (i.e., ensure
- persistency over restarts). If set to 2, it is written at
- shutdown but not read at startup. If set to 3, it is read at
- sartup but not written at shutdown. Default value is 0 (no db
- table interaction).
+ + dbmode: If set to 1, the content of the queue is read from
+ database at startup and is written to database table when the
+ SIP server is stopped (i.e., ensure persistency over
+ restarts). If set to 2, it is read at startup but not written
+ at shutdown. If set to 3, it is written at shutdown but not
+ read at startup. Default value is 0 (no db table interaction).
+ addmode: how to add new (key,value) pairs.
o 0: Will push all new (key,value) pairs at the end of the
queue. (default)