From: Brian West Date: Mon, 9 Mar 2009 16:36:56 +0000 (+0000) Subject: fix MODENDP-196 X-Git-Tag: v1.0.4~1587 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5f339a6c80e419edc419f5b3ac5766fc52879484;p=thirdparty%2Ffreeswitch.git fix MODENDP-196 git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12535 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/switch_loadable_module.c b/src/switch_loadable_module.c index 620700f418..e5de583844 100644 --- a/src/switch_loadable_module.c +++ b/src/switch_loadable_module.c @@ -433,6 +433,11 @@ static switch_status_t switch_loadable_module_unprocess(switch_loadable_module_t } switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "Deleting Endpoint '%s'\n", ptr->interface_name); + if (switch_event_create(&event, SWITCH_EVENT_MODULE_UNLOAD) == SWITCH_STATUS_SUCCESS) { + switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "type", "endpoint"); + switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "name", ptr->interface_name); + switch_event_fire(&event); + } switch_core_hash_delete(loadable_modules.endpoint_hash, ptr->interface_name); } }