]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix accidental missing event enum name
authorAnthony Minessale <anthony.minessale@gmail.com>
Fri, 8 Jun 2007 15:17:43 +0000 (15:17 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Fri, 8 Jun 2007 15:17:43 +0000 (15:17 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5291 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/event_handlers/mod_event_socket/mod_event_socket.c
src/switch_event.c

index 327eff0bda255e79df0854086da7d23960b329dc..fdeae10aa3fa327ef1ed85864f6fa7eed48cb349 100644 (file)
@@ -129,19 +129,24 @@ static void event_handler(switch_event_t *event)
                if (!switch_test_flag(l, LFLAG_EVENTS)) {
                        continue;
                }
-
-               if (l->event_list[(uint8_t) SWITCH_EVENT_ALL]) {
+               
+               if (l->event_list[SWITCH_EVENT_ALL]) {
                        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))) {
                                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)) {
                        char *uuid = switch_event_get_header(event, "unique-id");
                        if (!uuid || strcmp(uuid, switch_core_session_get_uuid(l->session))) {
-                               send = 1;
+                               send = 0;
                        }
                }
 
index 27bfe0c799fa25299cbbdacf92a344968e1fde36..7a408108f8a6f36e744d4461da86806f3e09f8b7 100644 (file)
@@ -133,6 +133,7 @@ static char *EVENT_NAMES[] = {
        "CODEC",
        "BACKGROUND_JOB",
        "DETECTED_SPEECH",
+       "DETECTED_FAX",
        "PRIVATE_COMMAND",
        "HEARTBEAT",
        "TRAP",