[Freeswitch-svn] [commit] r7773 - freeswitch/trunk/src
Freeswitch SVN
anthm at freeswitch.org
Mon Mar 3 13:05:07 EST 2008
Author: anthm
Date: Mon Mar 3 13:05:07 2008
New Revision: 7773
Modified:
freeswitch/trunk/src/switch_ivr_originate.c
Log:
fix FSCORE-104
Modified: freeswitch/trunk/src/switch_ivr_originate.c
==============================================================================
--- freeswitch/trunk/src/switch_ivr_originate.c (original)
+++ freeswitch/trunk/src/switch_ivr_originate.c Mon Mar 3 13:05:07 2008
@@ -34,14 +34,27 @@
static const switch_state_handler_table_t originate_state_handlers;
+static switch_status_t originate_on_hold(switch_core_session_t *session)
+{
+ switch_channel_t *channel = switch_core_session_get_channel(session);
+
+ while(switch_channel_get_state(channel) == CS_HOLD) {
+ switch_ivr_sleep(session, 10);
+ }
+
+ /* clear this handler so it only works once (next time (a.k.a. Transfer) we will do the real ring and hold states) */
+ switch_channel_clear_state_handler(channel, &originate_state_handlers);
+
+ return SWITCH_STATUS_FALSE;
+}
+
static switch_status_t originate_on_ring(switch_core_session_t *session)
{
switch_channel_t *channel = switch_core_session_get_channel(session);
- /* put the channel in a passive state so we can loop audio to it */
- /* clear this handler so it only works once (next time (a.k.a. Transfer) we will do the real ring state) */
- switch_channel_clear_state_handler(channel, &originate_state_handlers);
+ /* put the channel in a passive state until it is answered */
switch_channel_set_state(channel, CS_HOLD);
+
return SWITCH_STATUS_FALSE;
}
@@ -52,7 +65,7 @@
/*.on_hangup */ NULL,
/*.on_loopback */ NULL,
/*.on_transmit */ NULL,
- /*.on_hold */ NULL
+ /*.on_hold */ originate_on_hold
};
typedef enum {
More information about the Freeswitch-svn
mailing list