From: Olle Johansson Date: Tue, 7 Mar 2006 09:57:22 +0000 (+0000) Subject: Add accountcode to sip_peer dialplan function X-Git-Tag: 1.4.0-beta1~2469 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3f05acab236a9ac15eb041a82a33dcbec661090;p=thirdparty%2Fasterisk.git Add accountcode to sip_peer dialplan function git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@12260 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 124052c845..9424477443 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -9366,6 +9366,8 @@ static int function_sippeer(struct ast_channel *chan, char *cmd, char *data, cha snprintf(buf, len, "%d", peer->call_limit); } else if (!strcasecmp(colname, "curcalls")) { snprintf(buf, len, "%d", peer->inUse); + } else if (!strcasecmp(colname, "accountcode")) { + ast_copy_string(buf, peer->accountcode, len); } else if (!strcasecmp(colname, "useragent")) { ast_copy_string(buf, peer->useragent, len); } else if (!strcasecmp(colname, "mailbox")) { @@ -9424,6 +9426,7 @@ struct ast_custom_function sippeer_function = { "- curcalls Current amount of calls \n" " Only available if call-limit is set\n" "- language Default language for peer\n" + "- accountcode Account code for this peer\n" "- useragent Current user agent id for peer\n" "- codec[x] Preferred codec index number 'x' (beginning with zero).\n" "\n"