You can try something like:
failure_route[1] { if ( t_check_status("486") ) { . do whatever .
} }
Zeus Ng wrote:
failure_routes process the initial request, not the reply which caused the failure.
I'm not trying to process reply which caused the failure. Instead, I want to process the failure on the initial request. The problem is, a reply, no matter it's 1xx, 2xx, 3xx will always goes through reply route first. Then goes to failure route.
E.g.
UA1 -> SER -> UA2
If UA2 reply "486 Busy" to SER, the reply will be processed by reply route first (due to t_on_reply()) and then failure route (due to t_on_failure()). What I expected is any reply code >= 400 should be processed by failure route only.
Daniel
On 5/27/2004 3:35 PM, Zeus Ng wrote:
I have the following logic.
route { ... t_on_reply("1"); t_on_failure("1"); t_relay(); }
onreply_route[1] { xlog("L_NOTICE", "Reply status %rs: Reason %rr\n"); }
failure_route[1] { xlog("L_NOTICE", "Reply status %rs: Reason %rr\n"); if (status=="408") { do something 1 } else if (status=="480") { do something 2 } else if (status=="486") { do something 3 } }
When a reply with 4xx comes in, it first goes through
onreply_route[1]
and get the result printed to syslog. The message is then passed to failure_route[1]. But it seems that the status code and reason are gone. I get a <null> for both values in the failure route.
How should I
change the script to get that.
Zeus Ng
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers