Expand setinterfacevar option to also set a variable, MEMBERNAME, which contains the member's name. (issue #8046 reported by jmls)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@44218 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Joshua Colp
2006-10-02 20:58:48 +00:00
parent 3e4a081e1c
commit 8ff3dd273a
4 changed files with 8 additions and 1 deletions

View File

@@ -2580,8 +2580,10 @@ static int try_calling(struct queue_ent *qe, const char *options, char *announce
ast_log(LOG_DEBUG, "app_queue: sendurl=%s.\n", url);
ast_channel_sendurl(peer, url);
}
if (qe->parent->setinterfacevar)
if (qe->parent->setinterfacevar) {
pbx_builtin_setvar_helper(qe->chan, "MEMBERINTERFACE", member->interface);
pbx_builtin_setvar_helper(qe->chan, "MEMBERNAME", member->membername);
}
if (!ast_strlen_zero(agi)) {
if (option_debug)
ast_log(LOG_DEBUG, "app_queue: agi=%s.\n", agi);