summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorMatthew Fredrickson <creslin@digium.com>2007-08-24 18:05:11 +0000
committerMatthew Fredrickson <creslin@digium.com>2007-08-24 18:05:11 +0000
commit3616eb166f18634660b5c4c0c0d67308194c2535 (patch)
tree206193b28a920761afd9e3d252ea729810d9e95b /channels
parentca890bae34b8c33a8f911bff94cd261e91a259cf (diff)
Add VMWI chan_zap support #9909
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@80778 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_zap.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index 7b0c18695..c733e36fa 100644
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -7179,6 +7179,11 @@ static void *do_monitor(void *data)
if (last->msgstate != res) {
int x;
ast_debug(1, "Message status for %s changed from %d to %d on %d\n", last->mailbox, last->msgstate, res, last->channel);
+#ifdef ZT_VMWI
+ res2 = ioctl(last->subs[SUB_REAL].zfd, ZT_VMWI, res);
+ if (res2)
+ ast_log(LOG_DEBUG, "Unable to control message waiting led on channel %d\n", last->channel);
+#endif
x = ZT_FLUSH_BOTH;
res2 = ioctl(last->subs[SUB_REAL].zfd, ZT_FLUSH, &x);
if (res2)