Module: kamailio Branch: master Commit: 0a7404174975153658acfc547ecfe2d9ecef1ee9 URL: https://github.com/kamailio/kamailio/commit/0a7404174975153658acfc547ecfe2d9...
Author: Kamailio Dev kamailio.dev@kamailio.org Committer: Kamailio Dev kamailio.dev@kamailio.org Date: 2017-05-23T02:46:19+02:00
modules: readme files regenerated - htable ... [skip ci]
---
Modified: src/modules/htable/README
---
Diff: https://github.com/kamailio/kamailio/commit/0a7404174975153658acfc547ecfe2d9... Patch: https://github.com/kamailio/kamailio/commit/0a7404174975153658acfc547ecfe2d9...
---
diff --git a/src/modules/htable/README b/src/modules/htable/README index 83eff15a37..fffa45a219 100644 --- a/src/modules/htable/README +++ b/src/modules/htable/README @@ -108,7 +108,7 @@ Ovidiu Sas 1.19. sht_rm_name_re usage 1.20. sht_rm_value_re usage 1.21. sht_rm_name usage - 1.22. sht_rm_value_re usage + 1.22. sht_rm_value usage 1.23. sht_reset usage 1.24. sht_lock usage 1.25. sht_unlock usage @@ -703,6 +703,7 @@ sht_rm_value_re("ha=>.*");
The op parameter can be: * re - match the val parameter as regular expression. + * sw - match the val parameter as 'starts with'.
All parameters can be static strings or contain variables.
@@ -720,12 +721,13 @@ sht_rm_name("ha", "re", ".*");
The op parameter can be: * re - match the val parameter as regular expression. + * sw - match the val parameter as 'starts with'.
All parameters can be static strings or contain variables.
This function can be used from ANY_ROUTE.
- Example 1.22. sht_rm_value_re usage + Example 1.22. sht_rm_value usage ... sht_rm_value("ha", "re", ".*"); ...