Module: kamailio Branch: master Commit: faaf599c0def2d36fb4d41f91d1fbecaf9732905 URL: https://github.com/kamailio/kamailio/commit/faaf599c0def2d36fb4d41f91d1fbeca...
Author: Kamailio Dev kamailio.dev@kamailio.org Committer: Kamailio Dev kamailio.dev@kamailio.org Date: 2019-08-08T17:16:51+02:00
modules: readme files regenerated - htable ... [skip ci]
---
Modified: src/modules/htable/README
---
Diff: https://github.com/kamailio/kamailio/commit/faaf599c0def2d36fb4d41f91d1fbeca... Patch: https://github.com/kamailio/kamailio/commit/faaf599c0def2d36fb4d41f91d1fbeca...
---
diff --git a/src/modules/htable/README b/src/modules/htable/README index 2228d61d02..a6999eb23f 100644 --- a/src/modules/htable/README +++ b/src/modules/htable/README @@ -67,7 +67,9 @@ Ovidiu Sas 4.11. sht_iterator_end(iname) 4.12. sht_iterator_next(iname) 4.13. sht_match_name(htable, op, mval) - 4.14. sht_match_str_value(htable, op, mval) + 4.14. sht_has_name(htable, op, mval) + 4.15. sht_match_str_value(htable, op, mval) + 4.16. sht_has_str_value(htable, op, mval)
5. Exported pseudo-variables 6. RPC Commands @@ -168,7 +170,9 @@ Chapter 1. Admin Guide 4.11. sht_iterator_end(iname) 4.12. sht_iterator_next(iname) 4.13. sht_match_name(htable, op, mval) - 4.14. sht_match_str_value(htable, op, mval) + 4.14. sht_has_name(htable, op, mval) + 4.15. sht_match_str_value(htable, op, mval) + 4.16. sht_has_str_value(htable, op, mval)
5. Exported pseudo-variables 6. RPC Commands @@ -707,7 +711,9 @@ modparam("htable", "event_callback_mode", 1) 4.11. sht_iterator_end(iname) 4.12. sht_iterator_next(iname) 4.13. sht_match_name(htable, op, mval) - 4.14. sht_match_str_value(htable, op, mval) + 4.14. sht_has_name(htable, op, mval) + 4.15. sht_match_str_value(htable, op, mval) + 4.16. sht_has_str_value(htable, op, mval)
4.1. sht_print()
@@ -919,7 +925,11 @@ if(sht_match_name("ha", "eq", "alice")) { } ...
-4.14. sht_match_str_value(htable, op, mval) +4.14. sht_has_name(htable, op, mval) + + Alias for sht_match_name(). + +4.15. sht_match_str_value(htable, op, mval)
Return greater than 0 (true) if the htable has an item that matches the string value against the mval parameter. @@ -941,6 +951,10 @@ if(sht_match_str_value("ha", "eq", "alice")) { } ...
+4.16. sht_has_str_value(htable, op, mval) + + Alias for sht_match_str_value(). + 5. Exported pseudo-variables
* $sht(htable=>key)