Hi,
I would like to know how I can make subsequent messages in a dialog (ACK and BYE) to be stateful.
Your help will be greatly appreciated.
// reroute INVITE after timeout.
failure_route[MANAGE_FAILURE]
{
if (t_branch_timeout())
{
# change to new destination IP
$rd = "10.10.10.10";
t_relay();
exit;
}
...
}
Thanks,
AS