Module: kamailio Branch: master Commit: cb8b582f478d80e80d0dff492e0e376427182d91 URL: https://github.com/kamailio/kamailio/commit/cb8b582f478d80e80d0dff492e0e3764...
Author: Kamailio Dev kamailio.dev@kamailio.org Committer: Kamailio Dev kamailio.dev@kamailio.org Date: 2019-12-19T11:01:22+01:00
modules: readme files regenerated - ims_ipsec_pcscf ... [skip ci]
---
Modified: src/modules/ims_ipsec_pcscf/README
---
Diff: https://github.com/kamailio/kamailio/commit/cb8b582f478d80e80d0dff492e0e3764... Patch: https://github.com/kamailio/kamailio/commit/cb8b582f478d80e80d0dff492e0e3764...
---
diff --git a/src/modules/ims_ipsec_pcscf/README b/src/modules/ims_ipsec_pcscf/README index 32bb2d6000..fb95bae68b 100644 --- a/src/modules/ims_ipsec_pcscf/README +++ b/src/modules/ims_ipsec_pcscf/README @@ -54,7 +54,7 @@ Tsvetomir Dimitrov 4. Functions
4.1. ipsec_create(domain) - 4.2. ipsec_forward(domain) + 4.2. ipsec_forward(domain, flags) 4.3. ipsec_destroy(domain)
List of Examples @@ -93,7 +93,7 @@ Chapter 1. Admin Guide 4. Functions
4.1. ipsec_create(domain) - 4.2. ipsec_forward(domain) + 4.2. ipsec_forward(domain, flags) 4.3. ipsec_destroy(domain)
1. Overview @@ -222,7 +222,7 @@ modparam("ims_ipsec_pcscf", "ipsec_spi_id_range", 1000) 4. Functions
4.1. ipsec_create(domain) - 4.2. ipsec_forward(domain) + 4.2. ipsec_forward(domain, flags) 4.3. ipsec_destroy(domain)
4.1. ipsec_create(domain) @@ -241,7 +241,7 @@ modparam("ims_ipsec_pcscf", "ipsec_spi_id_range", 1000) ipsec_create("location"); ...
-4.2. ipsec_forward(domain) +4.2. ipsec_forward(domain, flags)
The function processes redirects outgoing message via the IPSec tunnel initiated with ipsec_create(). @@ -249,10 +249,15 @@ ipsec_create("location"); Meaning of the parameters is as follows: * domain - Logical domain within the registrar. If a database is used then this must be name of the table which stores the contacts. + flags - Set send force socket for request messages. If 1 - set + force socket for request messages. Useful for ipsec and TCP. This + is an optional parameter, default value - 0.
Example 1.9. ipsec_forward ... ipsec_forward("location"); +# or +ipsec_forward("location", "1"); ...
4.3. ipsec_destroy(domain)