Module: kamailio Branch: master Commit: 046fbf9371a346e0beb99c8686a8e73076664b52 URL: https://github.com/kamailio/kamailio/commit/046fbf9371a346e0beb99c8686a8e73076664b52
Author: Kamailio Dev <[email protected]> Committer: Kamailio Dev <[email protected]> Date: 2026-05-13T11:01:11+02:00 modules: readme files regenerated - corex ... [skip ci] --- Modified: src/modules/corex/README --- Diff: https://github.com/kamailio/kamailio/commit/046fbf9371a346e0beb99c8686a8e73076664b52.diff Patch: https://github.com/kamailio/kamailio/commit/046fbf9371a346e0beb99c8686a8e73076664b52.patch --- diff --git a/src/modules/corex/README b/src/modules/corex/README index 56ec7f33b53..868aeee4705 100644 --- a/src/modules/corex/README +++ b/src/modules/corex/README @@ -64,8 +64,8 @@ Muhammad Shahzad Shafi 4.23. via_reply_add_xavp_params(flags) 4.24. is_faked_msg() 4.25. is_socket_name(sockname) - 4.26. forward_uac() - 4.27. forward_uac_uri(vuri) + 4.26. forward_uac([bindex]) + 4.27. forward_uac_uri(vuri [, bindex]) 4.28. forward_reply() 4.29. msg_vbflag_set(flag) 4.30. msg_vbflag_is_set(flag) @@ -127,7 +127,7 @@ Muhammad Shahzad Shafi 1.31. is_faked_msg usage 1.32. is_socket_name usage 1.33. forward_uac usage - 1.34. forward_uac usage + 1.34. forward_uac_uri usage 1.35. forward_reply usage 1.36. msg_vbflag_set usage 1.37. msg_vbflag_is_set usage @@ -183,8 +183,8 @@ Chapter 1. Admin Guide 4.23. via_reply_add_xavp_params(flags) 4.24. is_faked_msg() 4.25. is_socket_name(sockname) - 4.26. forward_uac() - 4.27. forward_uac_uri(vuri) + 4.26. forward_uac([bindex]) + 4.27. forward_uac_uri(vuri [, bindex]) 4.28. forward_reply() 4.29. msg_vbflag_set(flag) 4.30. msg_vbflag_is_set(flag) @@ -408,8 +408,8 @@ modparam("corex", "nio_msg_avp", "$avp(msg)") 4.23. via_reply_add_xavp_params(flags) 4.24. is_faked_msg() 4.25. is_socket_name(sockname) - 4.26. forward_uac() - 4.27. forward_uac_uri(vuri) + 4.26. forward_uac([bindex]) + 4.27. forward_uac_uri(vuri [, bindex]) 4.28. forward_reply() 4.29. msg_vbflag_set(flag) 4.30. msg_vbflag_is_set(flag) @@ -834,12 +834,14 @@ event_route[dispatcher:dst-down] { } ... -4.26. forward_uac() +4.26. forward_uac([bindex]) Forward received request with a single Via header, the one added by Kamailio, the other ones being removed. Useful in cases when its reply should not be sent back (e.g., the reply was already sent out from - Kamailio). + Kamailio). The optional bindex parameter can be used to set a branch + index in the local Via branch parameter (can be a number or a + variable). This function can be used in REQUEST_ROUTE. @@ -854,15 +856,17 @@ request_route { } ... -4.27. forward_uac_uri(vuri) +4.27. forward_uac_uri(vuri [, bindex]) Similar to forward_uac() with the posibility to provide the target address as a SIP URI via the parameter vuri. The parameter vuri can - contain variables. + contain variables. The optional bindex parameter can be used to set a + branch index in the local Via branch parameter (can be a number or a + variable). This function can be used in REQUEST_ROUTE. - Example 1.34. forward_uac usage + Example 1.34. forward_uac_uri usage ... request_route { ... _______________________________________________ Kamailio - Development Mailing List -- [email protected] To unsubscribe send an email to [email protected] Important: keep the mailing list in the recipients, do not reply only to the sender!
