Module: kamailio Branch: master Commit: ac60e5d0a9f847fe77458d733d6ca67c9352978d URL: https://github.com/kamailio/kamailio/commit/ac60e5d0a9f847fe77458d733d6ca67c...
Author: Kamailio Dev kamailio.dev@kamailio.org Committer: Kamailio Dev kamailio.dev@kamailio.org Date: 2021-03-31T16:16:15+02:00
modules: readme files regenerated - textopsx ... [skip ci]
---
Modified: src/modules/textopsx/README
---
Diff: https://github.com/kamailio/kamailio/commit/ac60e5d0a9f847fe77458d733d6ca67c... Patch: https://github.com/kamailio/kamailio/commit/ac60e5d0a9f847fe77458d733d6ca67c...
---
diff --git a/src/modules/textopsx/README b/src/modules/textopsx/README index 772461ae54..dbb27653a0 100644 --- a/src/modules/textopsx/README +++ b/src/modules/textopsx/README @@ -246,7 +246,7 @@ if(fnmatch("$rU", "123*")) Meaning of the parameters is as follows: * hf - Header field to be appended. Format: HFNAME [ [IDX] ]. If index is not specified new header is inserted at the end of - message. + message. The index 1 correxponds to the first header. * hvalue - Value to be added, config var formatting supported.
Example 1.7. append_hf_value usage @@ -267,7 +267,7 @@ ot exists add new header Meaning of the parameters is as follows: * hf - Header field to be appended. Format: HFNAME [ [IDX] ]. If index is not specified new header is inserted at the top of - message. + message. The index 1 correxponds to the first header. * hvalue - Value to be added, config var formatting supported.
Example 1.8. insert_hf_value usage @@ -285,7 +285,7 @@ insert_hf_value("foo[1]", "gogo") # try add to the first header Meaning of the parameters is as follows: * hf_par - Header field/param to be removed. Format: HFNAME [ [IDX] ] [. PARAM ] If asterisk is specified as index then all values are - affected. + affected. The index 1 correxponds to the first header.
Example 1.9. remove_hf_value usage ... @@ -305,7 +305,7 @@ remove_hf_value("foo[*].bar") # for each foo delete bar parameters Meaning of the parameters is as follows: * hf_par - Header/param to be removed. Format: HFNAME [ [IDX] ] [. PARAM ] If asterisk is specified as index then all values are - affected. + affected. The index 1 correxponds to the first header.
Example 1.10. remove_hf_value2 usage ... @@ -324,7 +324,7 @@ remove_hf_value2("foo[*].bar") # for each foo delete bar parameters Meaning of the parameters is as follows: * hf_para - Header field value / param to be appended. Format: HFNAME [ [IDX] ] [. PARAM] If asterisk is specified as index then all - values are affected. + values are affected. The index 1 correxponds to the first header. * hvalue - Value to be assigned, config var formatting supported. If value is empty then no equal sign appears in param.
@@ -348,7 +348,7 @@ assign_hf_value("foo[*].bar", "") # set empty value (ex. lr) Meaning of the parameters is as follows: * hf_para - Header field value / param to be appended. Format: HFNAME [ [IDX] ] [. PARAM] If asterisk is specified as index then all - values are affected. + values are affected. The index 1 correxponds to the first header. * hvalue - Value to be assigned, config var formatting supported. If value is empty then no equal sign appears in param.