doh
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6115 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
0300e8e64a
commit
21508ee446
|
@ -905,6 +905,10 @@ SWITCH_DECLARE(switch_status_t) switch_core_session_exec(switch_core_session_t *
|
||||||
switch_event_t *event;
|
switch_event_t *event;
|
||||||
switch_channel_t *channel;
|
switch_channel_t *channel;
|
||||||
|
|
||||||
|
if (switch_strlen_zero(arg)) {
|
||||||
|
arg = "_undef_";
|
||||||
|
}
|
||||||
|
|
||||||
log = switch_core_session_alloc(session, sizeof(*log));
|
log = switch_core_session_alloc(session, sizeof(*log));
|
||||||
|
|
||||||
assert(log != NULL);
|
assert(log != NULL);
|
||||||
|
@ -923,7 +927,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_session_exec(switch_core_session_t *
|
||||||
if (switch_event_create(&event, SWITCH_EVENT_CHANNEL_EXECUTE) == SWITCH_STATUS_SUCCESS) {
|
if (switch_event_create(&event, SWITCH_EVENT_CHANNEL_EXECUTE) == SWITCH_STATUS_SUCCESS) {
|
||||||
switch_channel_event_set_data(session->channel, event);
|
switch_channel_event_set_data(session->channel, event);
|
||||||
switch_event_add_header(event, SWITCH_STACK_BOTTOM, "Application", "%s", application_interface->interface_name);
|
switch_event_add_header(event, SWITCH_STACK_BOTTOM, "Application", "%s", application_interface->interface_name);
|
||||||
switch_event_add_header(event, SWITCH_STACK_BOTTOM, "Application-Data", arg);
|
switch_event_add_header(event, SWITCH_STACK_BOTTOM, "Application-Data", "%s", arg);
|
||||||
switch_event_fire(&event);
|
switch_event_fire(&event);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue