fix accidental missing event enum name

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5291 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2007-06-08 15:17:43 +00:00
parent f32f6f24d7
commit 91cb42b7ea
2 changed files with 10 additions and 4 deletions

View File

@ -129,19 +129,24 @@ static void event_handler(switch_event_t *event)
if (!switch_test_flag(l, LFLAG_EVENTS)) { if (!switch_test_flag(l, LFLAG_EVENTS)) {
continue; continue;
} }
if (l->event_list[(uint8_t) SWITCH_EVENT_ALL]) { if (l->event_list[SWITCH_EVENT_ALL]) {
send = 1; send = 1;
} else if ((l->event_list[(uint8_t) event->event_id])) { } else if ((l->event_list[event->event_id])) {
if (event->event_id != SWITCH_EVENT_CUSTOM || (event->subclass && switch_core_hash_find(l->event_hash, event->subclass->name))) { if (event->event_id != SWITCH_EVENT_CUSTOM || (event->subclass && switch_core_hash_find(l->event_hash, event->subclass->name))) {
send = 1; send = 1;
} }
} else {
int x;
for(x = 0; x <= SWITCH_EVENT_ALL; x++) {
printf("%d ", l->event_list[x]);
}
} }
if (send && switch_test_flag(l, LFLAG_MYEVENTS)) { if (send && switch_test_flag(l, LFLAG_MYEVENTS)) {
char *uuid = switch_event_get_header(event, "unique-id"); char *uuid = switch_event_get_header(event, "unique-id");
if (!uuid || strcmp(uuid, switch_core_session_get_uuid(l->session))) { if (!uuid || strcmp(uuid, switch_core_session_get_uuid(l->session))) {
send = 1; send = 0;
} }
} }

View File

@ -133,6 +133,7 @@ static char *EVENT_NAMES[] = {
"CODEC", "CODEC",
"BACKGROUND_JOB", "BACKGROUND_JOB",
"DETECTED_SPEECH", "DETECTED_SPEECH",
"DETECTED_FAX",
"PRIVATE_COMMAND", "PRIVATE_COMMAND",
"HEARTBEAT", "HEARTBEAT",
"TRAP", "TRAP",