Hey all, Can anyone post any example config with successful use of load_gws() and next_gw() . I am trying to set it up for my system here but don't know what I am missing.Also if possible how do you log the loaded load_gws() and next_gw() in your logs.
Thanks, -Sharon
Sharon writes:
Can anyone post any example config with successful use of load_gws() and next_gw() .
you call load_gws() in your pstn route block and then next_gws() first time in your pstn route block and after that in your pstn failure route block.
I am trying to set it up for my system here but don't know what I am missing.Also if possible how do you log the loaded load_gws() and next_gw() in your logs.
you can use xlog to print $br after load_gws().
-- juha
Here's an example:
route[2] { if (!load_gws()) { xlog("L_ERR", "ERR: unable to load gateways\n"); sl_send_reply("503", "Service not available - unable to load gateways"); } else { if (!next_gw()) { xlog("L_INFO", "no available gateways\n"); sl_send_reply("503", "Service not available - no available gateways"); } else { t_on_failure("2"); route(1); } } exit; }
on failure_route[2] call for next_gw())
-ovi
On 8/11/06, Sharon asteriskgirl@gmail.com wrote:
Hey all, Can anyone post any example config with successful use of load_gws() and next_gw() . I am trying to set it up for my system here but don't know what I am missing.Also if possible how do you log the loaded load_gws() and next_gw() in your logs.
Thanks, -Sharon
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users