mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 03:20:57 +00:00
Add SET function (bug #4335)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5745 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user