summaryrefslogtreecommitdiff
path: root/include/asterisk
diff options
context:
space:
mode:
authorTerry Wilson <twilson@digium.com>2009-10-13 01:51:46 +0000
committerTerry Wilson <twilson@digium.com>2009-10-13 01:51:46 +0000
commita8034cd7700bddc58b6178023ae23dd1397088d4 (patch)
treebc4640994c732defc48fb23c6eedb9c60f7b6b6a /include/asterisk
parent832be82dfbe2027717c12d6aa93f4f310c1879f0 (diff)
Fix handling of notification calls w/ the dialing api
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@223874 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk')
-rw-r--r--include/asterisk/calendar.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asterisk/calendar.h b/include/asterisk/calendar.h
index 29c67de17..13f7ce728 100644
--- a/include/asterisk/calendar.h
+++ b/include/asterisk/calendar.h
@@ -24,6 +24,7 @@
#include "asterisk/config.h"
#include "asterisk/linkedlists.h"
#include "asterisk/lock.h"
+#include "asterisk/dial.h"
/*! \file calendar.h
* \brief A general API for managing calendar events with Asterisk
@@ -103,6 +104,8 @@ struct ast_calendar_event {
int notify_sched; /*!< The sched for event notification */
int bs_start_sched; /*!< The sched for changing the device state at the start of an event */
int bs_end_sched; /*!< The sched for changing the device state at the end of an event */
+ struct ast_dial *dial;
+ struct ast_channel *notify_chan;
AST_LIST_HEAD_NOLOCK(attendees, ast_calendar_attendee) attendees;
};