re-arrange stmts
This commit is contained in:
parent
364d2b6b30
commit
dd5c0a7742
|
@ -1919,20 +1919,6 @@ static int stop_node_thread(void)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void check_ocancel(switch_core_session_t *session)
|
|
||||||
{
|
|
||||||
//switch_channel_t *channel;
|
|
||||||
//const char *var;
|
|
||||||
|
|
||||||
switch_assert(session);
|
|
||||||
|
|
||||||
//channel = switch_core_session_get_channel(session);
|
|
||||||
|
|
||||||
cancel_caller_outbound_call(switch_core_session_get_uuid(session), SWITCH_CAUSE_ORIGINATOR_CANCEL);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static void check_cancel(fifo_node_t *node)
|
static void check_cancel(fifo_node_t *node)
|
||||||
{
|
{
|
||||||
int ppl_waiting;
|
int ppl_waiting;
|
||||||
|
@ -2288,11 +2274,11 @@ SWITCH_STANDARD_APP(fifo_function)
|
||||||
char *list_string;
|
char *list_string;
|
||||||
int nlist_count;
|
int nlist_count;
|
||||||
char *nlist[MAX_NODES_PER_CONSUMER];
|
char *nlist[MAX_NODES_PER_CONSUMER];
|
||||||
int consumer = 0;
|
int consumer = 0, in_table = 0;
|
||||||
const char *arg_fifo_name = NULL;
|
const char *arg_fifo_name = NULL;
|
||||||
const char *arg_inout = NULL;
|
const char *arg_inout = NULL;
|
||||||
const char *serviced_uuid = NULL;
|
const char *serviced_uuid = NULL;
|
||||||
|
|
||||||
if (!globals.running) {
|
if (!globals.running) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -2465,6 +2451,7 @@ SWITCH_STANDARD_APP(fifo_function)
|
||||||
|
|
||||||
fifo_queue_push(node->fifo_list[p], call_event);
|
fifo_queue_push(node->fifo_list[p], call_event);
|
||||||
fifo_caller_add(node, session);
|
fifo_caller_add(node, session);
|
||||||
|
in_table = 1;
|
||||||
|
|
||||||
call_event = NULL;
|
call_event = NULL;
|
||||||
switch_snprintf(tmp, sizeof(tmp), "%d", fifo_queue_size(node->fifo_list[p]));
|
switch_snprintf(tmp, sizeof(tmp), "%d", fifo_queue_size(node->fifo_list[p]));
|
||||||
|
@ -2598,9 +2585,7 @@ SWITCH_STANDARD_APP(fifo_function)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
check_ocancel(session);
|
cancel_caller_outbound_call(switch_core_session_get_uuid(session), SWITCH_CAUSE_ORIGINATOR_CANCEL);
|
||||||
|
|
||||||
fifo_caller_del(switch_core_session_get_uuid(session));
|
|
||||||
|
|
||||||
goto done;
|
goto done;
|
||||||
|
|
||||||
|
@ -3028,8 +3013,6 @@ SWITCH_STANDARD_APP(fifo_function)
|
||||||
|
|
||||||
|
|
||||||
fifo_execute_sql(sql, globals.sql_mutex);
|
fifo_execute_sql(sql, globals.sql_mutex);
|
||||||
fifo_caller_del(switch_core_session_get_uuid(other_session));
|
|
||||||
|
|
||||||
switch_safe_free(sql);
|
switch_safe_free(sql);
|
||||||
|
|
||||||
|
|
||||||
|
@ -3213,6 +3196,10 @@ SWITCH_STANDARD_APP(fifo_function)
|
||||||
|
|
||||||
done:
|
done:
|
||||||
|
|
||||||
|
if (!consumer && in_table) {
|
||||||
|
fifo_caller_del(switch_core_session_get_uuid(session));
|
||||||
|
}
|
||||||
|
|
||||||
if (switch_true(switch_channel_get_variable(channel, "fifo_destroy_after_use"))) {
|
if (switch_true(switch_channel_get_variable(channel, "fifo_destroy_after_use"))) {
|
||||||
do_destroy = 1;
|
do_destroy = 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue