Module: kamailio
Branch: master
Commit: ba0c570ca95bff06c8ce04779371567d88a4e9f8
URL:
https://github.com/kamailio/kamailio/commit/ba0c570ca95bff06c8ce04779371567…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2024-12-09T09:46:10+01:00
modules: readme files regenerated - tm ... [skip ci]
---
Modified: src/modules/tm/README
---
Diff:
https://github.com/kamailio/kamailio/commit/ba0c570ca95bff06c8ce04779371567…
Patch:
https://github.com/kamailio/kamailio/commit/ba0c570ca95bff06c8ce04779371567…
---
diff --git a/src/modules/tm/README b/src/modules/tm/README
index 06ee1beb53b..12a030cc19d 100644
--- a/src/modules/tm/README
+++ b/src/modules/tm/README
@@ -1294,16 +1294,17 @@ Note
See also: t_set_fr(), fr_timer.
- In Kamailio compatibility mode (defined by #!KAMAILIO), the value of
- the parameter must be the name of an AVP in pseudo-variable format:
- $avp(name). In SER compatibility mode it must be just AVP name.
+ In Kamailio compatibility mode (defined by #!KAMAILIO, which is
+ default), the value of the parameter must be the name of an AVP in
+ pseudo-variable format: $avp(name). In SER compatibility mode (defined
+ by #!SER) it must be just AVP name.
Example 1.28. Set fr_timer_avp parameter
...
-# Kamailio mode
-modparam("tm", "fr_timer_avp", "$avp(i:708)")
-# Old SER mode
-modparam("tm", "fr_timer_avp", "i:708")
+# default Kamailio compatibility mode
+modparam("tm", "fr_timer_avp", "$avp(frtimer)")
+# old SER compatibility mode
+modparam("tm", "fr_timer_avp", "frtimer")
...
3.28. fr_inv_timer_avp (string)
@@ -1328,15 +1329,16 @@ Note
See also: t_set_fr(), fr_inv_timer.
- In Kamailio compatibility mode (defined by #!KAMAILIO), the value of
- the parameter must be the name of an AVP in pseudo-variable format:
- $avp(name). In SER compatibility mode it must by just AVP name.
+ In Kamailio compatibility mode (defined by #!KAMAILIO, which is
+ default), the value of the parameter must be the name of an AVP in
+ pseudo-variable format: $avp(name). In SER compatibility mode (defined
+ by #!SER) it must by just AVP name.
Example 1.29. Set fr_inv_timer_avp parameter
...
-# Kamailio mode
+# Kamailio compatibility mode
modparam("tm", "fr_inv_timer_avp",
"$avp(my_fr_inv_timer)")
-# Old SER mode
+# old SER compatibility mode
modparam("tm", "fr_inv_timer_avp", "my_fr_inv_timer")
...