From: Russell Bryant Date: Fri, 8 Jun 2007 16:14:06 +0000 (+0000) Subject: Add channel variable manager event X-Git-Tag: 1.6.0-beta1~3^2~2416 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=334d8d9dc484f1a52d19bd530a6c4d0f98246b5c;p=thirdparty%2Fasterisk.git Add channel variable manager event (issue #7291, patch from tonyh and jontow) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@68473 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/pbx.c b/main/pbx.c index 90dd7ed743..014c23b146 100644 --- a/main/pbx.c +++ b/main/pbx.c @@ -5925,6 +5925,13 @@ void pbx_builtin_setvar_helper(struct ast_channel *chan, const char *name, const ast_verbose(VERBOSE_PREFIX_2 "Setting global variable '%s' to '%s'\n", name, value); newvariable = ast_var_assign(name, value); AST_LIST_INSERT_HEAD(headp, newvariable, entries); + manager_event(EVENT_FLAG_CALL, "VarSet", + "Channel: %s\r\n" + "Variable: %s\r\n" + "Value: %s\r\n" + "Uniqueid: %s\r\n", + chan ? chan->name : "none", name, value, + chan ? chan->uniqueid : "none"); } if (headp == &globals)