From 8b1ad09dcabeeed3d862e59ef91e6e6180ba0376 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Mon, 8 Dec 2008 17:08:26 +0000 Subject: [PATCH] parse private events during originate git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10655 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_ivr_originate.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/switch_ivr_originate.c b/src/switch_ivr_originate.c index 32b5d8a6a2..7dddd462c6 100644 --- a/src/switch_ivr_originate.c +++ b/src/switch_ivr_originate.c @@ -225,6 +225,10 @@ static uint8_t check_channel_status(switch_channel_t **peer_channels, *progress = 1; } + if (switch_core_session_private_event_count(peer_sessions[i])) { + switch_ivr_parse_all_events(peer_sessions[i]); + } + state = switch_channel_get_state(peer_channels[i]); if (state >= CS_HANGUP || state == CS_RESET || switch_channel_test_flag(peer_channels[i], CF_TRANSFER) || switch_channel_test_flag(peer_channels[i], CF_REDIRECT) || @@ -1328,6 +1332,10 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_originate(switch_core_session_t *sess check_per_channel_timeouts(peer_channels, per_channel_timelimit_sec, per_channel_progress_timelimit_sec, and_argc, start); + if (session && switch_core_session_private_event_count(session)) { + switch_ivr_parse_all_events(session); + } + if (!sent_ring && !progress && (progress_timelimit_sec && elapsed > (time_t) progress_timelimit_sec)) { idx = IDX_TIMEOUT; goto notready;