diff --git a/src/modules/tsilo/README b/src/modules/tsilo/README index c93fa0ebef4..06029a2bac6 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