mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-08 06:12:45 +00:00
Merge changes dealing with support for Digium phones.
Presence support has been added. This is accomplished by allowing for presence hints in addition to device state hints. A dialplan function called PRESENCE_STATE has been added to allow for setting and reading presence. Presence can be transmitted to Digium phones using custom XML elements in a PIDF presence document. Voicemail has new APIs that allow for moving, removing, forwarding, and playing messages. Messages have had a new unique message ID added to them so that the APIs will work reliably. The state of a voicemail mailbox can be obtained using an API that allows one to get a snapshot of the mailbox. A voicemail Dialplan App called VoiceMailPlayMsg has been added to be able to play back a specific message. Configuration hooks have been added. Configuration hooks allow for a piece of code to be executed when a specific configuration file is loaded by a specific module. This is useful for modules that are dependent on the configuration of other modules. chan_sip now has a public method that allows for a custom SIP INFO request to be sent mid-dialog. Digium phones use this in order to display progress bars when files are played. Messaging support has been expanded a bit. The main visible difference is the addition of an AMI action MessageSend. Finally, a ParkingLots manager action has been added in order to get a list of parking lots. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@368435 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -54,8 +54,10 @@ enum ast_event_type {
|
||||
AST_EVENT_SECURITY = 0x08,
|
||||
/*! Used by res_stun_monitor to alert listeners to an exernal network address change. */
|
||||
AST_EVENT_NETWORK_CHANGE = 0x09,
|
||||
/*! The presence state for a presence provider */
|
||||
AST_EVENT_PRESENCE_STATE = 0x0a,
|
||||
/*! Number of event types. This should be the last event type + 1 */
|
||||
AST_EVENT_TOTAL = 0x0a,
|
||||
AST_EVENT_TOTAL = 0x0b,
|
||||
};
|
||||
|
||||
/*! \brief Event Information Element types */
|
||||
@@ -287,9 +289,13 @@ enum ast_event_ie_type {
|
||||
AST_EVENT_IE_RECEIVED_HASH = 0x0036,
|
||||
AST_EVENT_IE_USING_PASSWORD = 0x0037,
|
||||
AST_EVENT_IE_ATTEMPTED_TRANSPORT = 0x0038,
|
||||
AST_EVENT_IE_PRESENCE_PROVIDER = 0x0039,
|
||||
AST_EVENT_IE_PRESENCE_STATE = 0x003a,
|
||||
AST_EVENT_IE_PRESENCE_SUBTYPE = 0x003b,
|
||||
AST_EVENT_IE_PRESENCE_MESSAGE = 0x003c,
|
||||
|
||||
/*! \brief Must be the last IE value +1 */
|
||||
AST_EVENT_IE_TOTAL = 0x0039,
|
||||
AST_EVENT_IE_TOTAL = 0x003d,
|
||||
};
|
||||
|
||||
/*!
|
||||
|
Reference in New Issue
Block a user