提交 26e84c87 authored 作者: Anthony Minessale's avatar Anthony Minessale

don't do wrapup when agent is in nowait mode or call has ended

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13094 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 de3e190a
...@@ -995,7 +995,6 @@ SWITCH_STANDARD_APP(fifo_function) ...@@ -995,7 +995,6 @@ SWITCH_STANDARD_APP(fifo_function)
switch_frame_t *read_frame; switch_frame_t *read_frame;
switch_status_t status; switch_status_t status;
char *uuid; char *uuid;
int done = 0;
switch_core_session_t *other_session; switch_core_session_t *other_session;
switch_input_args_t args = { 0 }; switch_input_args_t args = { 0 };
const char *pop_order = NULL; const char *pop_order = NULL;
...@@ -1310,9 +1309,10 @@ SWITCH_STANDARD_APP(fifo_function) ...@@ -1310,9 +1309,10 @@ SWITCH_STANDARD_APP(fifo_function)
switch_mutex_unlock(node->mutex); switch_mutex_unlock(node->mutex);
send_presence(node); send_presence(node);
switch_core_session_rwunlock(other_session); switch_core_session_rwunlock(other_session);
switch_safe_free(uuid);
if (!do_wait) { if (!do_wait || !switch_channel_ready(channel)) {
done = 1; break;
} }
fifo_consumer_wrapup_sound = switch_channel_get_variable(channel, "fifo_consumer_wrapup_sound"); fifo_consumer_wrapup_sound = switch_channel_get_variable(channel, "fifo_consumer_wrapup_sound");
...@@ -1377,13 +1377,7 @@ SWITCH_STANDARD_APP(fifo_function) ...@@ -1377,13 +1377,7 @@ SWITCH_STANDARD_APP(fifo_function)
} }
switch_channel_set_variable(channel, "fifo_status", "WAITING"); switch_channel_set_variable(channel, "fifo_status", "WAITING");
} }
switch_safe_free(uuid);
if (done) {
break;
}
if (do_wait && switch_channel_ready(channel)) { if (do_wait && switch_channel_ready(channel)) {
if (switch_event_create_subclass(&event, SWITCH_EVENT_CUSTOM, FIFO_EVENT) == SWITCH_STATUS_SUCCESS) { if (switch_event_create_subclass(&event, SWITCH_EVENT_CUSTOM, FIFO_EVENT) == SWITCH_STATUS_SUCCESS) {
switch_channel_event_set_data(channel, event); switch_channel_event_set_data(channel, event);
...@@ -1393,7 +1387,7 @@ SWITCH_STANDARD_APP(fifo_function) ...@@ -1393,7 +1387,7 @@ SWITCH_STANDARD_APP(fifo_function)
} }
} }
} }
if (switch_event_create_subclass(&event, SWITCH_EVENT_CUSTOM, FIFO_EVENT) == SWITCH_STATUS_SUCCESS) { if (switch_event_create_subclass(&event, SWITCH_EVENT_CUSTOM, FIFO_EVENT) == SWITCH_STATUS_SUCCESS) {
switch_channel_event_set_data(channel, event); switch_channel_event_set_data(channel, event);
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "FIFO-Name", argv[0]); switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "FIFO-Name", argv[0]);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论