summaryrefslogtreecommitdiff
path: root/res/res_phoneprov.c
diff options
context:
space:
mode:
authorDoug Bailey <dbailey@digium.com>2008-11-11 16:46:17 +0000
committerDoug Bailey <dbailey@digium.com>2008-11-11 16:46:17 +0000
commit7afa3746c3d58b6ed480fba8030d47f8375a6d93 (patch)
tree313179dabd9d10859131cec164e93213606176b6 /res/res_phoneprov.c
parent72d5d58069b930da8a451b45a922cb849bde7b18 (diff)
Add LINEKEYS variable to allow for a user to set the number of keys assigned to a line on a polycom phone
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@155934 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_phoneprov.c')
-rw-r--r--res/res_phoneprov.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/res/res_phoneprov.c b/res/res_phoneprov.c
index 5fcb29466..5646d2d02 100644
--- a/res/res_phoneprov.c
+++ b/res/res_phoneprov.c
@@ -80,6 +80,7 @@ enum pp_variables {
PP_CALLERID,
PP_TIMEZONE,
PP_LINENUMBER,
+ PP_LINEKEYS,
PP_VAR_LIST_LENGTH, /* This entry must always be the last in the list */
};
@@ -98,6 +99,7 @@ static const struct pp_variable_lookup {
{ PP_CALLERID, "cid_number", "CALLERID" },
{ PP_TIMEZONE, "timezone", "TIMEZONE" },
{ PP_LINENUMBER, "linenumber", "LINE" },
+ { PP_LINEKEYS, "linekeys", "LINEKEYS" },
};
/*! \brief structure to hold file data */
@@ -746,6 +748,10 @@ static struct extension *build_extension(struct ast_config *cfg, const char *nam
tmp = "1";
}
exten->index = atoi(tmp);
+ } else if (i == PP_LINEKEYS) {
+ if (!tmp) {
+ tmp = "1";
+ }
}
if (tmp && (var = ast_var_assign(pp_variable_list[i].template_var, tmp))) {