]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
add CALL_SECURE event
authorAnthony Minessale <anthony.minessale@gmail.com>
Thu, 28 May 2009 17:50:06 +0000 (17:50 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Thu, 28 May 2009 17:50:06 +0000 (17:50 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13487 d0543943-73ff-0310-b7d9-9358b9ac24b2

libs/esl/src/esl_event.c
libs/esl/src/include/esl_event.h
src/include/switch_types.h
src/switch_event.c

index e7affb0a41c3594ece3cd6466377f5a4593107c2..d963f93f1c9f404f278a18a198062b8704ba7a9b 100644 (file)
@@ -123,6 +123,7 @@ static const char *EVENT_NAMES[] = {
        "SERVER_DISCONNECTED",
        "SEND_INFO",
        "RECV_INFO",
+       "CALL_SECURE",
        "ALL"
 };
 
index cfc93104b99722251f06e46db89023997f316ae8..f0fd00372fb988bf172cfd34b6c4cc8e7fa11970 100644 (file)
@@ -111,6 +111,7 @@ typedef enum {
        ESL_EVENT_SERVER_DISCONNECTED,
        ESL_EVENT_SEND_INFO,
        ESL_EVENT_RECV_INFO,
+       ESL_EVENT_CALL_SECURE,
        ESL_EVENT_ALL
 } esl_event_types_t;
 
index be2266bb78c7df39e56e617ceff08009ba342289..0fc90fb6f194a89b4d0f35041d0fd3348f14e0ea 100644 (file)
@@ -1268,6 +1268,7 @@ typedef enum {
        SWITCH_EVENT_SERVER_DISCONNECTED,
        SWITCH_EVENT_SEND_INFO,
        SWITCH_EVENT_RECV_INFO,
+       SWITCH_EVENT_CALL_SECURE,
        SWITCH_EVENT_ALL
 } switch_event_types_t;
 
index 272a0db78eee4be974d9160e974b7abf7cc32e4f..688f554c95cb77f02d232ffa6c127582a0702749 100644 (file)
@@ -177,6 +177,7 @@ static char *EVENT_NAMES[] = {
        "SERVER_DISCONNECTED",
        "SEND_INFO",
        "RECV_INFO",
+       "CALL_SECURE",
        "ALL"
 };