From a2255da09732cda936fbbc2f6fe2e5c9259928c0 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Thu, 28 May 2009 17:50:06 +0000 Subject: [PATCH] add CALL_SECURE event git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13487 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- libs/esl/src/esl_event.c | 1 + libs/esl/src/include/esl_event.h | 1 + src/include/switch_types.h | 1 + src/switch_event.c | 1 + 4 files changed, 4 insertions(+) diff --git a/libs/esl/src/esl_event.c b/libs/esl/src/esl_event.c index e7affb0a41..d963f93f1c 100644 --- a/libs/esl/src/esl_event.c +++ b/libs/esl/src/esl_event.c @@ -123,6 +123,7 @@ static const char *EVENT_NAMES[] = { "SERVER_DISCONNECTED", "SEND_INFO", "RECV_INFO", + "CALL_SECURE", "ALL" }; diff --git a/libs/esl/src/include/esl_event.h b/libs/esl/src/include/esl_event.h index cfc93104b9..f0fd00372f 100644 --- a/libs/esl/src/include/esl_event.h +++ b/libs/esl/src/include/esl_event.h @@ -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; diff --git a/src/include/switch_types.h b/src/include/switch_types.h index be2266bb78..0fc90fb6f1 100644 --- a/src/include/switch_types.h +++ b/src/include/switch_types.h @@ -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; diff --git a/src/switch_event.c b/src/switch_event.c index 272a0db78e..688f554c95 100644 --- a/src/switch_event.c +++ b/src/switch_event.c @@ -177,6 +177,7 @@ static char *EVENT_NAMES[] = { "SERVER_DISCONNECTED", "SEND_INFO", "RECV_INFO", + "CALL_SECURE", "ALL" };