diff --git a/CHANGES b/CHANGES index 8c3a253471..b4e0d4e91b 100644 --- a/CHANGES +++ b/CHANGES @@ -16,6 +16,8 @@ Applications -------------------------- * Record application now has an option 'o' which allows 0 to act as an exit key setting the RECORD_STATUS variable to 'OPERATOR' instead of 'DTMF' + * Monitor() - A new option, B(), has been added that will turn on a periodic + beep while the call is being recorded. Functions -------------------------- @@ -85,6 +87,8 @@ MixMonitor ------------------------- * A new function, MIXMONITOR, has been added to allow access to individual instances of MixMonitor on a channel. + * A new option, B(), has been added that will turn on a periodic beep while the + call is being recorded. Channel Drivers diff --git a/apps/app_mixmonitor.c b/apps/app_mixmonitor.c index a5d383cbc2..6a2a0fcece 100644 --- a/apps/app_mixmonitor.c +++ b/apps/app_mixmonitor.c @@ -57,6 +57,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") #include "asterisk/linkedlists.h" #include "asterisk/test.h" #include "asterisk/mixmonitor.h" +#include "asterisk/beep.h" /*** DOCUMENTATION @@ -83,6 +84,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") channel is not optimized away. To do this, be sure to call your Local channel with the /n option. For example: Dial(Local/start@mycontext/n) +