mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-29 18:19:30 +00:00
merge Russell's 'hold_handling' branch, finally implementing music-on-hold handling the way it was decided at AstriDevCon Europe 2006 (and the way people really want it to be)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37988 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
16
channel.c
16
channel.c
@@ -3881,11 +3881,11 @@ ast_group_t ast_get_group(char *s)
|
||||
return group;
|
||||
}
|
||||
|
||||
static int (*ast_moh_start_ptr)(struct ast_channel *, const char *) = NULL;
|
||||
static int (*ast_moh_start_ptr)(struct ast_channel *, const char *, const char *) = NULL;
|
||||
static void (*ast_moh_stop_ptr)(struct ast_channel *) = NULL;
|
||||
static void (*ast_moh_cleanup_ptr)(struct ast_channel *) = NULL;
|
||||
|
||||
void ast_install_music_functions(int (*start_ptr)(struct ast_channel *, const char *),
|
||||
void ast_install_music_functions(int (*start_ptr)(struct ast_channel *, const char *, const char *),
|
||||
void (*stop_ptr)(struct ast_channel *),
|
||||
void (*cleanup_ptr)(struct ast_channel *))
|
||||
{
|
||||
@@ -3902,14 +3902,16 @@ void ast_uninstall_music_functions(void)
|
||||
}
|
||||
|
||||
/*! \brief Turn on music on hold on a given channel */
|
||||
int ast_moh_start(struct ast_channel *chan, const char *mclass)
|
||||
int ast_moh_start(struct ast_channel *chan, const char *mclass, const char *interpclass)
|
||||
{
|
||||
if (ast_moh_start_ptr)
|
||||
return ast_moh_start_ptr(chan, mclass);
|
||||
return ast_moh_start_ptr(chan, mclass, interpclass);
|
||||
|
||||
if (option_verbose > 2) {
|
||||
ast_verbose(VERBOSE_PREFIX_3 "Music class %s requested but no musiconhold loaded.\n",
|
||||
mclass ? mclass : (interpclass ? interpclass : "default"));
|
||||
}
|
||||
|
||||
if (option_verbose > 2)
|
||||
ast_verbose(VERBOSE_PREFIX_3 "Music class %s requested but no musiconhold loaded.\n", mclass ? mclass : "default");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user