-
- Downloads
Merge changes from team/russell/events
This set of changes introduces a new generic event API for use within Asterisk. I am still working on a way for events to be shared between servers, but this part is ready and can already be used inside of Asterisk. This set of changes introduces the first use of the API, as well. I have restructured the way that MWI (message waiting indication) is handled. It is now event based instead of polling based. For example, if there are a bunch of SIP phones subscribed to mailboxes, then chan_sip will not have to constantly poll the mailboxes for changes. app_voicemail will generate events when changes occur. See UPGRADE.txt and CHANGES for some more information on the effects of these changes from the user perspective. For developer information, see the text in include/asterisk/event.h. As always, additional feedback is welcome on the asterisk-dev mailing list. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@62292 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Showing
- CHANGES 16 additions, 0 deletionsCHANGES
- UPGRADE.txt 12 additions, 1 deletionUPGRADE.txt
- apps/app_voicemail.c 302 additions, 35 deletionsapps/app_voicemail.c
- channels/chan_iax2.c 79 additions, 27 deletionschannels/chan_iax2.c
- channels/chan_mgcp.c 36 additions, 2 deletionschannels/chan_mgcp.c
- channels/chan_sip.c 69 additions, 84 deletionschannels/chan_sip.c
- channels/chan_zap.c 34 additions, 2 deletionschannels/chan_zap.c
- configs/sip.conf.sample 0 additions, 1 deletionconfigs/sip.conf.sample
- configs/voicemail.conf.sample 13 additions, 0 deletionsconfigs/voicemail.conf.sample
- include/asterisk.h 1 addition, 0 deletionsinclude/asterisk.h
- include/asterisk/event.h 416 additions, 0 deletionsinclude/asterisk/event.h
- include/asterisk/event_defs.h 120 additions, 0 deletionsinclude/asterisk/event_defs.h
- main/Makefile 1 addition, 1 deletionmain/Makefile
- main/asterisk.c 1 addition, 0 deletionsmain/asterisk.c
- main/dial.c 13 additions, 13 deletionsmain/dial.c
- main/event.c 774 additions, 0 deletionsmain/event.c
- res/res_eventtest.c 177 additions, 0 deletionsres/res_eventtest.c
Loading
Please register or sign in to comment