Module: kamailio
Branch: master
Commit: ea7201d9c3b086fb79c093b4f127516befb08e25
URL:
https://github.com/kamailio/kamailio/commit/ea7201d9c3b086fb79c093b4f127516…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2022-10-13T15:46:31+02:00
modules: readme files regenerated - tsilo ... [skip ci]
---
Modified: src/modules/tsilo/README
---
Diff:
https://github.com/kamailio/kamailio/commit/ea7201d9c3b086fb79c093b4f127516…
Patch:
https://github.com/kamailio/kamailio/commit/ea7201d9c3b086fb79c093b4f127516…
---
diff --git a/src/modules/tsilo/README b/src/modules/tsilo/README
index c93fa0ebef..06029a2bac 100644
--- a/src/modules/tsilo/README
+++ b/src/modules/tsilo/README
@@ -180,7 +180,7 @@ modparam("tsilo", "use_domain", 1)
if (is_method("INVITE")) {
if (t_newtran()) {
ts_store();
- # t_store("sip:alice@$td");
+ # ts_store("sip:alice@$td");
}
}
...
@@ -199,6 +199,11 @@ if (is_method("INVITE")) {
and add them new branches. Can be a static string value or a
dynamic string with pseudo-variables.
+ Return codes:
+ * 1 - branches added.
+ -1 - an internal error has produced (parsing error, memory error).
+ -2 - no records found for the r-uri.
+
This function can be used from REQUEST_ROUTE, FAILURE_ROUTE.
Example 1.4. ts_append usage
@@ -231,6 +236,11 @@ if (is_method("REGISTER")) {
location lookup based on this Contact URI fails (no location record
found), then the branch append will not happen.
+ Return codes:
+ * 1 - branches added.
+ -1 - an internal error has produced (parsing error, memory error).
+ -2 - no records found for the r-uri.
+
This function can be used from REQUEST_ROUTE, FAILURE_ROUTE.
Example 1.5. ts_append_by_contact usage