Browse Source

modules: readme files regenerated - tmx ...

Kamailio Dev 8 years ago
parent
commit
3d684fe201
1 changed files with 9 additions and 0 deletions
  1. 9 0
      modules/tmx/README

+ 9 - 0
modules/tmx/README

@@ -381,12 +381,21 @@ if(t_suspend())
      * rtname - the name of the route block to execute. Can be a static
        string value or a dynamic string with pseudo-variables.
 
+   Important note: the route[rtname] is executed in the context of a
+   failure (same behaviour for functions as they were used in a
+   failure_route block).
+
    This function can be used in ANY_ROUTE.
 
    Example 1.11. t_continue usage
 ...
 t_continue('123', '456', 'MYROUTE');
 ...
+route[MYROUTE] {
+  xlog("executed by t continue\n");
+  ...
+}
+...
 
 4.11.  t_reuse_branch()