char *tof_data = NULL;
char *tof_array[4] = { 0 };
//int tof_arrayc = 0;
- const char *continue_on_fail = NULL, *failure_causes = NULL,
- *v_campon = NULL, *v_campon_retries, *v_campon_sleep, *v_campon_timeout, *v_campon_fallback_exten = NULL;
+ const char *v_campon = NULL, *v_campon_retries, *v_campon_sleep, *v_campon_timeout, *v_campon_fallback_exten = NULL;
switch_call_cause_t cause = SWITCH_CAUSE_NORMAL_CLEARING;
int campon_retries = 100, campon_timeout = 10, campon_sleep = 10, tmp, camping = 0, fail = 0, thread_started = 0;
struct camping_stake stake = { 0 };
return;
}
- continue_on_fail = switch_channel_get_variable(caller_channel, "continue_on_fail");
-
transfer_on_fail = switch_channel_get_variable(caller_channel, "transfer_on_fail");
tof_data = switch_core_session_strdup(session, transfer_on_fail);
switch_split(tof_data, ' ', tof_array);
transfer_on_fail = tof_array[0];
- failure_causes = switch_channel_get_variable(caller_channel, "failure_causes");
-
if ((v_campon = switch_channel_get_variable(caller_channel, "campon")) && switch_true(v_campon)) {
const char *cid_name = NULL;
const char *cid_number = NULL;
EXCEPTION... ATTENDED_TRANSFER never is a reason to continue.......
*/
if (cause != SWITCH_CAUSE_ATTENDED_TRANSFER) {
+ const char *continue_on_fail = NULL, *failure_causes = NULL;
+
+ continue_on_fail = switch_channel_get_variable(caller_channel, "continue_on_fail");
+ failure_causes = switch_channel_get_variable(caller_channel, "failure_causes");
+
if (continue_on_fail || failure_causes) {
const char *cause_str;
char cause_num[35] = "";