From 5b7a769fd8b02dcb1d6326ebbe1d4eafcdc75491 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Tue, 15 Apr 2014 23:21:19 +0000 Subject: (mix)monitor: Add options to enable a periodic beep Add an option to enable a periodic beep to be played into a call if it is being recorded. If enabled, it uses the PERIODIC_HOOK() function internally to play the 'beep' prompt into the call at a specified interval. This option is provided for both Monitor() and MixMonitor(). Review: https://reviewboard.asterisk.org/r/3424/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@412427 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- include/asterisk/monitor.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include/asterisk/monitor.h') diff --git a/include/asterisk/monitor.h b/include/asterisk/monitor.h index e29622ea8..6030221a2 100644 --- a/include/asterisk/monitor.h +++ b/include/asterisk/monitor.h @@ -43,6 +43,7 @@ struct ast_channel_monitor { char read_filename[FILENAME_MAX]; char write_filename[FILENAME_MAX]; char filename_base[FILENAME_MAX]; + char beep_id[64]; int filename_changed; char *format; int joinfiles; @@ -53,7 +54,8 @@ struct ast_channel_monitor { /* Start monitoring a channel */ AST_OPTIONAL_API(int, ast_monitor_start, (struct ast_channel *chan, const char *format_spec, - const char *fname_base, int need_lock, int stream_action), + const char *fname_base, int need_lock, int stream_action, + const char *beep_id), { return -1; }); /* Stop monitoring a channel */ -- cgit v1.2.3