summaryrefslogtreecommitdiff
path: root/channel.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-12-09 19:55:01 +0000
committerMark Spencer <markster@digium.com>2004-12-09 19:55:01 +0000
commit5789ae4d1857140b7f070f39cffc78f6da09e222 (patch)
treeaba0dff96c3c1cc73c40a0810d4e465ad2b79d31 /channel.c
parent78642a3ed283a2fe21fac842e567fecfea1ad1d7 (diff)
Make music on hold truly optional (bug #2998)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4411 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/channel.c b/channel.c
index 39645652f..dca52974a 100755
--- a/channel.c
+++ b/channel.c
@@ -24,6 +24,7 @@
#include <asterisk/sched.h>
#include <asterisk/options.h>
#include <asterisk/channel.h>
+#include <asterisk/musiconhold.h>
#include <asterisk/channel_pvt.h>
#include <asterisk/logger.h>
#include <asterisk/say.h>
@@ -2959,3 +2960,40 @@ unsigned int ast_get_group(char *s)
}
return group;
}
+
+
+static int (*ast_moh_start_ptr)(struct ast_channel *, char *) = NULL;
+static void (*ast_moh_stop_ptr)(struct ast_channel *) = NULL;
+
+
+void ast_install_music_functions(int (*start_ptr)(struct ast_channel *, char *),
+ void (*stop_ptr)(struct ast_channel *))
+{
+ ast_moh_start_ptr = start_ptr;
+ ast_moh_stop_ptr = stop_ptr;
+}
+
+void ast_uninstall_music_functions(void)
+{
+ ast_moh_start_ptr = NULL;
+ ast_moh_stop_ptr = NULL;
+}
+
+/*! Turn on/off music on hold on a given channel */
+
+int ast_moh_start(struct ast_channel *chan, char *mclass)
+{
+ if(ast_moh_start_ptr)
+ return ast_moh_start_ptr(chan, mclass);
+
+ if (option_verbose > 2)
+ ast_verbose(VERBOSE_PREFIX_3 "Music class %s requested but no musiconhold loaded.\n", mclass ? mclass : "default");
+
+ return 0;
+}
+
+void ast_moh_stop(struct ast_channel *chan)
+{
+ if(ast_moh_stop_ptr)
+ ast_moh_stop_ptr(chan);
+}