From: Jonathan Rose Date: Thu, 2 May 2013 16:39:28 +0000 (+0000) Subject: Putting all event defs and names back for now due to res_corosync dependency X-Git-Tag: 13.0.0-beta1~1855 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=02961601cd0e4e264c0d03f6a849f12f35c56632;p=thirdparty%2Fasterisk.git Putting all event defs and names back for now due to res_corosync dependency git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@387420 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/include/asterisk/event_defs.h b/include/asterisk/event_defs.h index 83fc988895..7a4b064d0c 100644 --- a/include/asterisk/event_defs.h +++ b/include/asterisk/event_defs.h @@ -56,10 +56,12 @@ enum ast_event_type { AST_EVENT_NETWORK_CHANGE = 0x09, /*! The presence state for a presence provider */ AST_EVENT_PRESENCE_STATE = 0x0a, + /*! Used to alert listeners when a named ACL has been changed. */ + AST_EVENT_ACL_CHANGE = 0x0b, /*! Send out a ping for debugging distributed events */ - AST_EVENT_PING = 0x0b, + AST_EVENT_PING = 0x0c, /*! Number of event types. This should be the last event type + 1 */ - AST_EVENT_TOTAL = 0x0c, + AST_EVENT_TOTAL = 0x0d, }; /*! \brief Event Information Element types */ diff --git a/main/event.c b/main/event.c index fa2557a77e..d97b04336b 100644 --- a/main/event.c +++ b/main/event.c @@ -217,6 +217,7 @@ static const char * const event_names[AST_EVENT_TOTAL] = { [AST_EVENT_SECURITY] = "Security", [AST_EVENT_NETWORK_CHANGE] = "NetworkChange", [AST_EVENT_PRESENCE_STATE] = "PresenceState", + [AST_EVENT_ACL_CHANGE] = "ACLChange", [AST_EVENT_PING] = "Ping", };