FS-9412 [switch_loadable_module.c] Make MODULE_UNLOAD event report module name (key) and file (filename), similar to event MODULE_LOAD
Add key and filename for symetry with SWITCH_EVENT_MODULE_LOAD, for api_interface, and to make it simpler to know which module is unloaded FS-9412 #resolve
This commit is contained in:
parent
732b6e75fe
commit
d243c166f1
|
@ -1124,6 +1124,8 @@ static switch_status_t switch_loadable_module_unprocess(switch_loadable_module_t
|
||||||
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "name", ptr->interface_name);
|
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "name", ptr->interface_name);
|
||||||
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "description", switch_str_nil(ptr->desc));
|
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "description", switch_str_nil(ptr->desc));
|
||||||
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "syntax", switch_str_nil(ptr->syntax));
|
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "syntax", switch_str_nil(ptr->syntax));
|
||||||
|
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "key", old_module->key);
|
||||||
|
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "filename", old_module->filename);
|
||||||
switch_event_fire(&event);
|
switch_event_fire(&event);
|
||||||
removed++;
|
removed++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue