Hello,
On 5/10/12 9:40 AM, Vineet Menon wrote:
Hi,
the module doc page http://www.kamailio.org/docs/modules/3.3.x/modules_k/tmx.html#id2525893 says t_continue() has 3rd parameter which says which route block to execute. SO does that mean t_continue() should be present before routing logic(s)?? Where should be t_continue() be placed in a config??
t_continue() has to be in a route block which is handling SIP requests (e.g., inside request_route { ... } or other sub routes like route[NAME] {...}).
It does not matter if you call execution of a route block that is defined later, references are resolved after all config is parsed. If you look at the default config file, inside request_route block are executed many route blocks which are defined after it.
Cheers, Daniel