Displaying 1 result from an estimated 1 matches for "acc_rad_request".
2005 Jul 06
0
Asterisk voicemail
...warding to PSTN"); ## registered in our realm
forward(10.10.10.3, 5060); ## Our Cisco router
break;
};
# native SIP destinations are handled using our USRLOC DB
if (!lookup("location")) {
sl_send_reply("404", "Not Found");
#acc_rad_request("404");
break;
};
# timeout occurred ... now to forward to Asterisk's voicemail service
if(method == "INVITE" && isflagset(4)) {
t_on_failure("1");
};
};
route(1);
}
# -------------------------------
# Route Processing
# -------------...