From: Michael Jerris Date: Thu, 15 Apr 2010 07:20:06 +0000 (-0400) Subject: add event for Valet Parking action exit X-Git-Tag: git2svn-syncpoint-master~218 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7074b07603290ecbae281413af947111ee63d538;p=thirdparty%2Ffreeswitch.git add event for Valet Parking action exit --- diff --git a/src/mod/applications/mod_valet_parking/mod_valet_parking.c b/src/mod/applications/mod_valet_parking/mod_valet_parking.c index 9aacdbd33f..430cd2f73e 100644 --- a/src/mod/applications/mod_valet_parking/mod_valet_parking.c +++ b/src/mod/applications/mod_valet_parking/mod_valet_parking.c @@ -287,6 +287,14 @@ SWITCH_STANDARD_APP(valet_parking_function) switch_mutex_lock(lot->mutex); switch_core_hash_delete(lot->hash, ext); switch_mutex_unlock(lot->mutex); + + if (switch_event_create_subclass(&event, SWITCH_EVENT_CUSTOM, VALET_EVENT) == SWITCH_STATUS_SUCCESS) { + switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "Valet-Lot-Name", lot_name); + switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "Valet-Extension", ext); + switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "Action", "exit"); + switch_channel_event_set_data(channel, event); + switch_event_fire(&event); + } } else { switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Usage: %s\n", VALET_APP_SYNTAX); }