Add SET function (bug #4335)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5745 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.2-netsec
Mark Spencer 20 years ago
parent ebd2196ab7
commit f3cbf61cbf

@ -72,6 +72,29 @@ static char *builtin_function_if(struct ast_channel *chan, char *cmd, char *data
return ret;
}
static char *builtin_function_set(struct ast_channel *chan, char *cmd, char *data, char *buf, size_t len)
{
char *ret = NULL, *varname, *val;
if ((varname = ast_strdupa(data))) {
if ((val = strchr(varname, '='))) {
*val = '\0';
val++;
varname = ast_strip(varname);
val = ast_strip(val);
pbx_builtin_setvar_helper(chan, varname, val);
ast_copy_string(buf, val, len);
} else {
ast_log(LOG_WARNING, "Syntax Error!\n");
}
} else {
ast_log(LOG_WARNING, "Memory Error!\n");
}
return ret;
}
#ifndef BUILTIN_FUNC
static
#endif
@ -82,6 +105,16 @@ struct ast_custom_function isnull_function = {
.read = builtin_function_isnull,
};
#ifndef BUILTIN_FUNC
static
#endif
struct ast_custom_function set_function = {
.name = "SET",
.synopsis = "SET assigns a value to a function call.",
.syntax = "SET(<varname>=<value>)",
.read = builtin_function_set,
};
#ifndef BUILTIN_FUNC
static
#endif

Loading…
Cancel
Save