Wed Apr 6 11:30:04 2011

Asterisk developer's documentation


event_defs.h File Reference

Generic event system. More...

Go to the source code of this file.

Data Structures

struct  ast_event_iterator
 supposed to be an opaque type More...

Enumerations

enum  ast_event_ie_pltype {
  AST_EVENT_IE_PLTYPE_UNKNOWN = -1, AST_EVENT_IE_PLTYPE_EXISTS, AST_EVENT_IE_PLTYPE_UINT, AST_EVENT_IE_PLTYPE_STR,
  AST_EVENT_IE_PLTYPE_RAW, AST_EVENT_IE_PLTYPE_BITFLAGS
}
 Payload types for event information elements. More...
enum  ast_event_ie_type {
  AST_EVENT_IE_END = -1, AST_EVENT_IE_NEWMSGS = 0x0001, AST_EVENT_IE_OLDMSGS = 0x0002, AST_EVENT_IE_MAILBOX = 0x0003,
  AST_EVENT_IE_UNIQUEID = 0x0004, AST_EVENT_IE_EVENTTYPE = 0x0005, AST_EVENT_IE_EXISTS = 0x0006, AST_EVENT_IE_DEVICE = 0x0007,
  AST_EVENT_IE_STATE = 0x0008, AST_EVENT_IE_CONTEXT = 0x0009, AST_EVENT_IE_CEL_EVENT_TYPE = 0x000a, AST_EVENT_IE_CEL_EVENT_TIME = 0x000b,
  AST_EVENT_IE_CEL_EVENT_TIME_USEC = 0x000c, AST_EVENT_IE_CEL_USEREVENT_NAME = 0x000d, AST_EVENT_IE_CEL_CIDNAME = 0x000e, AST_EVENT_IE_CEL_CIDNUM = 0x000f,
  AST_EVENT_IE_CEL_EXTEN = 0x0010, AST_EVENT_IE_CEL_CONTEXT = 0x0011, AST_EVENT_IE_CEL_CHANNAME = 0x0012, AST_EVENT_IE_CEL_APPNAME = 0x0013,
  AST_EVENT_IE_CEL_APPDATA = 0x0014, AST_EVENT_IE_CEL_AMAFLAGS = 0x0015, AST_EVENT_IE_CEL_ACCTCODE = 0x0016, AST_EVENT_IE_CEL_UNIQUEID = 0x0017,
  AST_EVENT_IE_CEL_USERFIELD = 0x0018, AST_EVENT_IE_CEL_CIDANI = 0x0019, AST_EVENT_IE_CEL_CIDRDNIS = 0x001a, AST_EVENT_IE_CEL_CIDDNID = 0x001b,
  AST_EVENT_IE_CEL_PEER = 0x001c, AST_EVENT_IE_CEL_LINKEDID = 0x001d, AST_EVENT_IE_CEL_PEERACCT = 0x001e, AST_EVENT_IE_CEL_EXTRA = 0x001f,
  AST_EVENT_IE_DESCRIPTION = 0x0020, AST_EVENT_IE_EID = 0x0021, AST_EVENT_IE_SECURITY_EVENT = 0x0022, AST_EVENT_IE_EVENT_VERSION = 0x0023,
  AST_EVENT_IE_SERVICE = 0x0024, AST_EVENT_IE_MODULE = 0x0025, AST_EVENT_IE_ACCOUNT_ID = 0x0026, AST_EVENT_IE_SESSION_ID = 0x0027,
  AST_EVENT_IE_SESSION_TV = 0x0028, AST_EVENT_IE_ACL_NAME = 0x0029, AST_EVENT_IE_LOCAL_ADDR = 0x002a, AST_EVENT_IE_REMOTE_ADDR = 0x002b,
  AST_EVENT_IE_EVENT_TV = 0x002c, AST_EVENT_IE_REQUEST_TYPE = 0x002d, AST_EVENT_IE_REQUEST_PARAMS = 0x002e, AST_EVENT_IE_AUTH_METHOD = 0x002f,
  AST_EVENT_IE_SEVERITY = 0x0030, AST_EVENT_IE_EXPECTED_ADDR = 0x0031, AST_EVENT_IE_CHALLENGE = 0x0032, AST_EVENT_IE_RESPONSE = 0x0033,
  AST_EVENT_IE_EXPECTED_RESPONSE = 0x0034, AST_EVENT_IE_TOTAL = 0x0035
}
 Event Information Element types. More...
enum  ast_event_subscriber_res { AST_EVENT_SUB_NONE, AST_EVENT_SUB_EXISTS }
 Results for checking for subscribers. More...
enum  ast_event_type {
  AST_EVENT_ALL = 0x00, AST_EVENT_CUSTOM = 0x01, AST_EVENT_MWI = 0x02, AST_EVENT_SUB = 0x03,
  AST_EVENT_UNSUB = 0x04, AST_EVENT_DEVICE_STATE = 0x05, AST_EVENT_DEVICE_STATE_CHANGE = 0x06, AST_EVENT_CEL = 0x07,
  AST_EVENT_SECURITY = 0x08, AST_EVENT_NETWORK_CHANGE = 0x09, AST_EVENT_TOTAL = 0x0a
}
 Event types. More...


Detailed Description

Generic event system.

Author:
Russell Bryant <russell@digium.com>

Definition in file event_defs.h.


Enumeration Type Documentation

enum ast_event_ie_pltype

Payload types for event information elements.

Enumerator:
AST_EVENT_IE_PLTYPE_UNKNOWN 
AST_EVENT_IE_PLTYPE_EXISTS  Just check if it exists, not the value
AST_EVENT_IE_PLTYPE_UINT  Unsigned Integer (Can be used for signed, too ...)
AST_EVENT_IE_PLTYPE_STR  String
AST_EVENT_IE_PLTYPE_RAW  Raw data, compared with memcmp
AST_EVENT_IE_PLTYPE_BITFLAGS  Bit flags (unsigned integer, compared using boolean logic)

Definition at line 293 of file event_defs.h.

00293                          {
00294    AST_EVENT_IE_PLTYPE_UNKNOWN = -1,
00295    /*! Just check if it exists, not the value */
00296    AST_EVENT_IE_PLTYPE_EXISTS,
00297    /*! Unsigned Integer (Can be used for signed, too ...) */
00298    AST_EVENT_IE_PLTYPE_UINT,
00299    /*! String */
00300    AST_EVENT_IE_PLTYPE_STR,
00301    /*! Raw data, compared with memcmp */
00302    AST_EVENT_IE_PLTYPE_RAW,
00303    /*! Bit flags (unsigned integer, compared using boolean logic) */
00304    AST_EVENT_IE_PLTYPE_BITFLAGS,
00305 };

enum ast_event_ie_type

Event Information Element types.

Enumerator:
AST_EVENT_IE_END  Used to terminate the arguments to event functions
AST_EVENT_IE_NEWMSGS  Number of new messages Used by: AST_EVENT_MWI Payload type: UINT.
AST_EVENT_IE_OLDMSGS  Number of Used by: AST_EVENT_MWI Payload type: UINT.
AST_EVENT_IE_MAILBOX  Mailbox name.

(mailbox[@context]) 
Used by: AST_EVENT_MWI Payload type: STR
AST_EVENT_IE_UNIQUEID  Unique ID Used by: AST_EVENT_SUB, AST_EVENT_UNSUB Payload type: UINT.
AST_EVENT_IE_EVENTTYPE  Event type Used by: AST_EVENT_SUB, AST_EVENT_UNSUB Payload type: UINT.
AST_EVENT_IE_EXISTS  Hint that someone cares that an IE exists Used by: AST_EVENT_SUB Payload type: UINT (ast_event_ie_type).
AST_EVENT_IE_DEVICE  Device Name Used by AST_EVENT_DEVICE_STATE_CHANGE Payload type: STR.
AST_EVENT_IE_STATE  Generic State IE Used by AST_EVENT_DEVICE_STATE_CHANGE Payload type: UINT The actual state values depend on the event which this IE is a part of.
AST_EVENT_IE_CONTEXT  Context IE Used by AST_EVENT_MWI Payload type: str.
AST_EVENT_IE_CEL_EVENT_TYPE  Channel Event Type Used by: AST_EVENT_CEL Payload type: UINT.
AST_EVENT_IE_CEL_EVENT_TIME  Channel Event Time (seconds) Used by: AST_EVENT_CEL Payload type: UINT.
AST_EVENT_IE_CEL_EVENT_TIME_USEC  Channel Event Time (micro-seconds) Used by: AST_EVENT_CEL Payload type: UINT.
AST_EVENT_IE_CEL_USEREVENT_NAME  Channel Event User Event Name Used by: AST_EVENT_CEL Payload type: STR.
AST_EVENT_IE_CEL_CIDNAME  Channel Event CID name Used by: AST_EVENT_CEL Payload type: STR.
AST_EVENT_IE_CEL_CIDNUM  Channel Event CID num Used by: AST_EVENT_CEL Payload type: STR.
AST_EVENT_IE_CEL_EXTEN  Channel Event extension name Used by: AST_EVENT_CEL Payload type: STR.
AST_EVENT_IE_CEL_CONTEXT  Channel Event context name Used by: AST_EVENT_CEL Payload type: STR.
AST_EVENT_IE_CEL_CHANNAME  Channel Event channel name Used by: AST_EVENT_CEL Payload type: STR.
AST_EVENT_IE_CEL_APPNAME  Channel Event app name Used by: AST_EVENT_CEL Payload type: STR.
AST_EVENT_IE_CEL_APPDATA  Channel Event app args/data Used by: AST_EVENT_CEL Payload type: STR.
AST_EVENT_IE_CEL_AMAFLAGS  Channel Event AMA flags Used by: AST_EVENT_CEL Payload type: UINT.
AST_EVENT_IE_CEL_ACCTCODE  Channel Event AccountCode Used by: AST_EVENT_CEL Payload type: STR.
AST_EVENT_IE_CEL_UNIQUEID  Channel Event UniqueID Used by: AST_EVENT_CEL Payload type: STR.
AST_EVENT_IE_CEL_USERFIELD  Channel Event Userfield Used by: AST_EVENT_CEL Payload type: STR.
AST_EVENT_IE_CEL_CIDANI  Channel Event CID ANI field Used by: AST_EVENT_CEL Payload type: STR.
AST_EVENT_IE_CEL_CIDRDNIS  Channel Event CID RDNIS field Used by: AST_EVENT_CEL Payload type: STR.
AST_EVENT_IE_CEL_CIDDNID  Channel Event CID dnid Used by: AST_EVENT_CEL Payload type: STR.
AST_EVENT_IE_CEL_PEER  Channel Event Peer -- for Things involving multiple channels, like BRIDGE Used by: AST_EVENT_CEL Payload type: STR.
AST_EVENT_IE_CEL_LINKEDID  Channel Event LinkedID Used by: AST_EVENT_CEL Payload type: STR.
AST_EVENT_IE_CEL_PEERACCT  Channel Event peeraccount Used by: AST_EVENT_CEL Payload type: STR.
AST_EVENT_IE_CEL_EXTRA  Channel Event extra data Used by: AST_EVENT_CEL Payload type: STR.
AST_EVENT_IE_DESCRIPTION  Description Used by: AST_EVENT_SUB, AST_EVENT_UNSUB Payload type: STR.
AST_EVENT_IE_EID  Entity ID Used by All events Payload type: RAW This IE indicates which server the event originated from.
AST_EVENT_IE_SECURITY_EVENT 
AST_EVENT_IE_EVENT_VERSION 
AST_EVENT_IE_SERVICE 
AST_EVENT_IE_MODULE 
AST_EVENT_IE_ACCOUNT_ID 
AST_EVENT_IE_SESSION_ID 
AST_EVENT_IE_SESSION_TV 
AST_EVENT_IE_ACL_NAME 
AST_EVENT_IE_LOCAL_ADDR 
AST_EVENT_IE_REMOTE_ADDR 
AST_EVENT_IE_EVENT_TV 
AST_EVENT_IE_REQUEST_TYPE 
AST_EVENT_IE_REQUEST_PARAMS 
AST_EVENT_IE_AUTH_METHOD 
AST_EVENT_IE_SEVERITY 
AST_EVENT_IE_EXPECTED_ADDR 
AST_EVENT_IE_CHALLENGE 
AST_EVENT_IE_RESPONSE 
AST_EVENT_IE_EXPECTED_RESPONSE 
AST_EVENT_IE_TOTAL  Must be the last IE value +1.

Definition at line 62 of file event_defs.h.

00062                        {
00063    /*! Used to terminate the arguments to event functions */
00064    AST_EVENT_IE_END                 = -1,
00065 
00066    /*! 
00067     * \brief Number of new messages
00068     * Used by: AST_EVENT_MWI 
00069     * Payload type: UINT
00070     */
00071    AST_EVENT_IE_NEWMSGS             = 0x0001,
00072    /*! 
00073     * \brief Number of
00074     * Used by: AST_EVENT_MWI 
00075     * Payload type: UINT
00076     */
00077    AST_EVENT_IE_OLDMSGS             = 0x0002,
00078    /*! 
00079     * \brief Mailbox name \verbatim (mailbox[@context]) \endverbatim
00080     * Used by: AST_EVENT_MWI 
00081     * Payload type: STR
00082     */
00083    AST_EVENT_IE_MAILBOX             = 0x0003,
00084    /*! 
00085     * \brief Unique ID
00086     * Used by: AST_EVENT_SUB, AST_EVENT_UNSUB
00087     * Payload type: UINT
00088     */
00089    AST_EVENT_IE_UNIQUEID            = 0x0004,
00090    /*! 
00091     * \brief Event type 
00092     * Used by: AST_EVENT_SUB, AST_EVENT_UNSUB
00093     * Payload type: UINT
00094     */
00095    AST_EVENT_IE_EVENTTYPE           = 0x0005,
00096    /*!
00097     * \brief Hint that someone cares that an IE exists
00098     * Used by: AST_EVENT_SUB
00099     * Payload type: UINT (ast_event_ie_type)
00100     */
00101    AST_EVENT_IE_EXISTS              = 0x0006,
00102    /*!
00103     * \brief Device Name
00104     * Used by AST_EVENT_DEVICE_STATE_CHANGE
00105     * Payload type: STR
00106     */
00107    AST_EVENT_IE_DEVICE              = 0x0007,
00108    /*!
00109     * \brief Generic State IE
00110     * Used by AST_EVENT_DEVICE_STATE_CHANGE
00111     * Payload type: UINT
00112     * The actual state values depend on the event which
00113     * this IE is a part of.
00114     */
00115     AST_EVENT_IE_STATE              = 0x0008,
00116     /*!
00117      * \brief Context IE
00118      * Used by AST_EVENT_MWI
00119      * Payload type: str
00120      */
00121     AST_EVENT_IE_CONTEXT            = 0x0009,
00122    /*! 
00123     * \brief Channel Event Type
00124     * Used by: AST_EVENT_CEL
00125     * Payload type: UINT
00126     */
00127    AST_EVENT_IE_CEL_EVENT_TYPE      = 0x000a,
00128    /*! 
00129     * \brief Channel Event Time (seconds)
00130     * Used by: AST_EVENT_CEL
00131     * Payload type: UINT
00132     */
00133    AST_EVENT_IE_CEL_EVENT_TIME      = 0x000b,
00134    /*! 
00135     * \brief Channel Event Time (micro-seconds)
00136     * Used by: AST_EVENT_CEL
00137     * Payload type: UINT
00138     */
00139    AST_EVENT_IE_CEL_EVENT_TIME_USEC = 0x000c,
00140    /*! 
00141     * \brief Channel Event User Event Name
00142     * Used by: AST_EVENT_CEL
00143     * Payload type: STR
00144     */
00145    AST_EVENT_IE_CEL_USEREVENT_NAME  = 0x000d,
00146    /*! 
00147     * \brief Channel Event CID name
00148     * Used by: AST_EVENT_CEL
00149     * Payload type: STR
00150     */
00151    AST_EVENT_IE_CEL_CIDNAME         = 0x000e,
00152    /*! 
00153     * \brief Channel Event CID num
00154     * Used by: AST_EVENT_CEL
00155     * Payload type: STR
00156     */
00157    AST_EVENT_IE_CEL_CIDNUM          = 0x000f,
00158    /*! 
00159     * \brief Channel Event extension name
00160     * Used by: AST_EVENT_CEL
00161     * Payload type: STR
00162     */
00163    AST_EVENT_IE_CEL_EXTEN           = 0x0010,
00164    /*! 
00165     * \brief Channel Event context name
00166     * Used by: AST_EVENT_CEL
00167     * Payload type: STR
00168     */
00169    AST_EVENT_IE_CEL_CONTEXT         = 0x0011,
00170    /*! 
00171     * \brief Channel Event channel name
00172     * Used by: AST_EVENT_CEL
00173     * Payload type: STR
00174     */
00175    AST_EVENT_IE_CEL_CHANNAME        = 0x0012,
00176    /*! 
00177     * \brief Channel Event app name
00178     * Used by: AST_EVENT_CEL
00179     * Payload type: STR
00180     */
00181    AST_EVENT_IE_CEL_APPNAME         = 0x0013,
00182    /*! 
00183     * \brief Channel Event app args/data
00184     * Used by: AST_EVENT_CEL
00185     * Payload type: STR
00186     */
00187    AST_EVENT_IE_CEL_APPDATA         = 0x0014,
00188    /*! 
00189     * \brief Channel Event AMA flags
00190     * Used by: AST_EVENT_CEL
00191     * Payload type: UINT
00192     */
00193    AST_EVENT_IE_CEL_AMAFLAGS        = 0x0015,
00194    /*! 
00195     * \brief Channel Event AccountCode
00196     * Used by: AST_EVENT_CEL
00197     * Payload type: STR
00198     */
00199    AST_EVENT_IE_CEL_ACCTCODE        = 0x0016,
00200    /*! 
00201     * \brief Channel Event UniqueID
00202     * Used by: AST_EVENT_CEL
00203     * Payload type: STR
00204     */
00205    AST_EVENT_IE_CEL_UNIQUEID        = 0x0017,
00206    /*! 
00207     * \brief Channel Event Userfield
00208     * Used by: AST_EVENT_CEL
00209     * Payload type: STR
00210     */
00211    AST_EVENT_IE_CEL_USERFIELD       = 0x0018,
00212    /*! 
00213     * \brief Channel Event CID ANI field
00214     * Used by: AST_EVENT_CEL
00215     * Payload type: STR
00216     */
00217    AST_EVENT_IE_CEL_CIDANI          = 0x0019,
00218    /*! 
00219     * \brief Channel Event CID RDNIS field
00220     * Used by: AST_EVENT_CEL
00221     * Payload type: STR
00222     */
00223    AST_EVENT_IE_CEL_CIDRDNIS        = 0x001a,
00224    /*! 
00225     * \brief Channel Event CID dnid
00226     * Used by: AST_EVENT_CEL
00227     * Payload type: STR
00228     */
00229    AST_EVENT_IE_CEL_CIDDNID         = 0x001b,
00230    /*! 
00231     * \brief Channel Event Peer -- for Things involving multiple channels, like BRIDGE
00232     * Used by: AST_EVENT_CEL
00233     * Payload type: STR
00234     */
00235    AST_EVENT_IE_CEL_PEER            = 0x001c,
00236    /*! 
00237     * \brief Channel Event LinkedID
00238     * Used by: AST_EVENT_CEL
00239     * Payload type: STR
00240     */
00241    AST_EVENT_IE_CEL_LINKEDID        = 0x001d,
00242    /*! 
00243     * \brief Channel Event peeraccount
00244     * Used by: AST_EVENT_CEL
00245     * Payload type: STR
00246     */
00247    AST_EVENT_IE_CEL_PEERACCT        = 0x001e,
00248    /*! 
00249     * \brief Channel Event extra data
00250     * Used by: AST_EVENT_CEL
00251     * Payload type: STR
00252     */
00253    AST_EVENT_IE_CEL_EXTRA           = 0x001f,
00254    /*!
00255     * \brief Description
00256     * Used by: AST_EVENT_SUB, AST_EVENT_UNSUB
00257     * Payload type: STR
00258     */
00259    AST_EVENT_IE_DESCRIPTION         = 0x0020,
00260    /*!
00261     * \brief Entity ID
00262     * Used by All events
00263     * Payload type: RAW
00264     * This IE indicates which server the event originated from
00265     */
00266    AST_EVENT_IE_EID                 = 0x0021,
00267    AST_EVENT_IE_SECURITY_EVENT      = 0x0022,
00268    AST_EVENT_IE_EVENT_VERSION       = 0x0023,
00269    AST_EVENT_IE_SERVICE             = 0x0024,
00270    AST_EVENT_IE_MODULE              = 0x0025,
00271    AST_EVENT_IE_ACCOUNT_ID          = 0x0026,
00272    AST_EVENT_IE_SESSION_ID          = 0x0027,
00273    AST_EVENT_IE_SESSION_TV          = 0x0028,
00274    AST_EVENT_IE_ACL_NAME            = 0x0029,
00275    AST_EVENT_IE_LOCAL_ADDR          = 0x002a,
00276    AST_EVENT_IE_REMOTE_ADDR         = 0x002b,
00277    AST_EVENT_IE_EVENT_TV            = 0x002c,
00278    AST_EVENT_IE_REQUEST_TYPE        = 0x002d,
00279    AST_EVENT_IE_REQUEST_PARAMS      = 0x002e,
00280    AST_EVENT_IE_AUTH_METHOD         = 0x002f,
00281    AST_EVENT_IE_SEVERITY            = 0x0030,
00282    AST_EVENT_IE_EXPECTED_ADDR       = 0x0031,
00283    AST_EVENT_IE_CHALLENGE           = 0x0032,
00284    AST_EVENT_IE_RESPONSE            = 0x0033,
00285    AST_EVENT_IE_EXPECTED_RESPONSE   = 0x0034,
00286    /*! \brief Must be the last IE value +1 */
00287    AST_EVENT_IE_TOTAL               = 0x0035,
00288 };

enum ast_event_subscriber_res

Results for checking for subscribers.

ast_event_check_subscriber()

Enumerator:
AST_EVENT_SUB_NONE  No subscribers exist
AST_EVENT_SUB_EXISTS  At least one subscriber exists

Definition at line 312 of file event_defs.h.

00312                               {
00313    /*! No subscribers exist */
00314    AST_EVENT_SUB_NONE,
00315    /*! At least one subscriber exists */
00316    AST_EVENT_SUB_EXISTS,
00317 };

enum ast_event_type

Event types.

Note:
These values can *never* change.
Enumerator:
AST_EVENT_ALL  Reserved to provide the ability to subscribe to all events. A specific event should never have a payload of 0.
AST_EVENT_CUSTOM  This event type is reserved for use by third-party modules to create custom events without having to modify this file.
Note:
There are no "custom" IE types, because IEs only have to be unique to the event itself, not necessarily across all events.
AST_EVENT_MWI  Voicemail message waiting indication
AST_EVENT_SUB  Someone has subscribed to events
AST_EVENT_UNSUB  Someone has unsubscribed from events
AST_EVENT_DEVICE_STATE  The aggregate state of a device across all servers configured to be a part of a device state cluster has changed.
AST_EVENT_DEVICE_STATE_CHANGE  The state of a device has changed on _one_ server. This should not be used directly, in general. Use AST_EVENT_DEVICE_STATE instead.
AST_EVENT_CEL  Channel Event Logging events
AST_EVENT_SECURITY  A report of a security related event (see security_events.h)
AST_EVENT_NETWORK_CHANGE  Used by res_stun_monitor to alert listeners to an exernal network address change.
AST_EVENT_TOTAL  Number of event types. This should be the last event type + 1

Definition at line 30 of file event_defs.h.

00030                     {
00031    /*! Reserved to provide the ability to subscribe to all events.  A specific
00032     *  event should never have a payload of 0. */
00033    AST_EVENT_ALL                 = 0x00,
00034    /*! This event type is reserved for use by third-party modules to create
00035     *  custom events without having to modify this file. 
00036     *  \note There are no "custom" IE types, because IEs only have to be
00037     *  unique to the event itself, not necessarily across all events. */
00038    AST_EVENT_CUSTOM              = 0x01,
00039    /*! Voicemail message waiting indication */
00040    AST_EVENT_MWI                 = 0x02,
00041    /*! Someone has subscribed to events */
00042    AST_EVENT_SUB                 = 0x03,
00043    /*! Someone has unsubscribed from events */
00044    AST_EVENT_UNSUB               = 0x04,
00045    /*! The aggregate state of a device across all servers configured to be
00046     *  a part of a device state cluster has changed. */
00047    AST_EVENT_DEVICE_STATE        = 0x05,
00048    /*! The state of a device has changed on _one_ server.  This should not be used
00049     *  directly, in general.  Use AST_EVENT_DEVICE_STATE instead. */
00050    AST_EVENT_DEVICE_STATE_CHANGE = 0x06,
00051    /*! Channel Event Logging events */
00052    AST_EVENT_CEL                 = 0x07,
00053    /*! A report of a security related event (see security_events.h) */
00054    AST_EVENT_SECURITY            = 0x08,
00055    /*! Used by res_stun_monitor to alert listeners to an exernal network address change. */
00056    AST_EVENT_NETWORK_CHANGE      = 0x09,
00057    /*! Number of event types.  This should be the last event type + 1 */
00058    AST_EVENT_TOTAL               = 0x0a,
00059 };


Generated on Wed Apr 6 11:30:04 2011 for Asterisk - The Open Source Telephony Project by  doxygen 1.4.7