mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 04:30:28 +00:00
more localization of variables
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@21537 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -702,9 +702,7 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
|
|||||||
{
|
{
|
||||||
int res = -1;
|
int res = -1;
|
||||||
struct localuser *u;
|
struct localuser *u;
|
||||||
char *tech, *number, *rest, *cur;
|
char *rest, *cur;
|
||||||
char privcid[256];
|
|
||||||
char privintro[1024];
|
|
||||||
struct dial_localuser *outgoing = NULL, *tmp;
|
struct dial_localuser *outgoing = NULL, *tmp;
|
||||||
struct ast_channel *peer;
|
struct ast_channel *peer;
|
||||||
int to;
|
int to;
|
||||||
@@ -714,10 +712,8 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
|
|||||||
int cause;
|
int cause;
|
||||||
char numsubst[AST_MAX_EXTENSION];
|
char numsubst[AST_MAX_EXTENSION];
|
||||||
char cidname[AST_MAX_EXTENSION];
|
char cidname[AST_MAX_EXTENSION];
|
||||||
char *l;
|
|
||||||
int privdb_val = 0;
|
int privdb_val = 0;
|
||||||
unsigned int calldurationlimit = 0;
|
unsigned int calldurationlimit = 0;
|
||||||
struct ast_bridge_config config;
|
|
||||||
long timelimit = 0;
|
long timelimit = 0;
|
||||||
long play_warning = 0;
|
long play_warning = 0;
|
||||||
long warning_freq = 0;
|
long warning_freq = 0;
|
||||||
@@ -730,11 +726,11 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
|
|||||||
int play_to_caller = 0, play_to_callee = 0;
|
int play_to_caller = 0, play_to_callee = 0;
|
||||||
int sentringing = 0, moh = 0;
|
int sentringing = 0, moh = 0;
|
||||||
const char *outbound_group = NULL;
|
const char *outbound_group = NULL;
|
||||||
const char *macro_result = NULL;
|
|
||||||
char *macro_transfer_dest = NULL;
|
|
||||||
int digit = 0, result = 0;
|
int digit = 0, result = 0;
|
||||||
time_t start_time, answer_time, end_time;
|
time_t start_time;
|
||||||
struct ast_app *app = NULL;
|
struct ast_app *app = NULL;
|
||||||
|
char privintro[1024];
|
||||||
|
char privcid[256];
|
||||||
|
|
||||||
char *parse;
|
char *parse;
|
||||||
AST_DECLARE_APP_ARGS(args,
|
AST_DECLARE_APP_ARGS(args,
|
||||||
@@ -828,13 +824,13 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
|
|||||||
play_to_caller = 1;
|
play_to_caller = 1;
|
||||||
|
|
||||||
var = pbx_builtin_getvar_helper(chan,"LIMIT_WARNING_FILE");
|
var = pbx_builtin_getvar_helper(chan,"LIMIT_WARNING_FILE");
|
||||||
warning_sound = (!ast_strlen_zero(var)) ? var : "timeleft";
|
warning_sound = S_OR(var, "timeleft");
|
||||||
|
|
||||||
var = pbx_builtin_getvar_helper(chan,"LIMIT_TIMEOUT_FILE");
|
var = pbx_builtin_getvar_helper(chan,"LIMIT_TIMEOUT_FILE");
|
||||||
end_sound = (!ast_strlen_zero(var)) ? var : NULL;
|
end_sound = S_OR(var, NULL); /* XXX not much of a point in doing this! */
|
||||||
|
|
||||||
var = pbx_builtin_getvar_helper(chan,"LIMIT_CONNECT_FILE");
|
var = pbx_builtin_getvar_helper(chan,"LIMIT_CONNECT_FILE");
|
||||||
start_sound = (!ast_strlen_zero(var)) ? var : NULL;
|
start_sound = S_OR(var, NULL); /* XXX not much of a point in doing this! */
|
||||||
|
|
||||||
/* undo effect of S(x) in case they are both used */
|
/* undo effect of S(x) in case they are both used */
|
||||||
calldurationlimit = 0;
|
calldurationlimit = 0;
|
||||||
@@ -863,8 +859,7 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
|
|||||||
opt_args[OPT_ARG_PRIVACY] = ast_strdupa(chan->exten);
|
opt_args[OPT_ARG_PRIVACY] = ast_strdupa(chan->exten);
|
||||||
if (ast_test_flag(&opts, OPT_PRIVACY) || ast_test_flag(&opts, OPT_SCREENING)) {
|
if (ast_test_flag(&opts, OPT_PRIVACY) || ast_test_flag(&opts, OPT_SCREENING)) {
|
||||||
char callerid[60];
|
char callerid[60];
|
||||||
|
char *l = chan->cid.cid_num; /* XXX watch out, we are overwriting it */
|
||||||
l = chan->cid.cid_num;
|
|
||||||
if (!ast_strlen_zero(l)) {
|
if (!ast_strlen_zero(l)) {
|
||||||
ast_shrink_phone_number(l);
|
ast_shrink_phone_number(l);
|
||||||
if( ast_test_flag(&opts, OPT_PRIVACY) ) {
|
if( ast_test_flag(&opts, OPT_PRIVACY) ) {
|
||||||
@@ -961,8 +956,8 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
|
|||||||
rest = args.peers;
|
rest = args.peers;
|
||||||
while ((cur = strsep(&rest, "&")) ) {
|
while ((cur = strsep(&rest, "&")) ) {
|
||||||
/* Get a technology/[device:]number pair */
|
/* Get a technology/[device:]number pair */
|
||||||
number = cur;
|
char *number = cur;
|
||||||
tech = strsep(&number, "/");
|
char *tech = strsep(&number, "/");
|
||||||
if (!number) {
|
if (!number) {
|
||||||
ast_log(LOG_WARNING, "Dial argument takes format (technology/[device:]number1)\n");
|
ast_log(LOG_WARNING, "Dial argument takes format (technology/[device:]number1)\n");
|
||||||
goto out;
|
goto out;
|
||||||
@@ -1140,7 +1135,9 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
|
|||||||
res = 0;
|
res = 0;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
time(&answer_time);
|
const char *number;
|
||||||
|
time_t end_time, answer_time = time(NULL);
|
||||||
|
|
||||||
strcpy(status, "ANSWER");
|
strcpy(status, "ANSWER");
|
||||||
/* Ah ha! Someone answered within the desired timeframe. Of course after this
|
/* Ah ha! Someone answered within the desired timeframe. Of course after this
|
||||||
we will always return with -1 so that it is hung up properly after the
|
we will always return with -1 so that it is hung up properly after the
|
||||||
@@ -1153,7 +1150,7 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
|
|||||||
if (peer->name)
|
if (peer->name)
|
||||||
pbx_builtin_setvar_helper(chan, "DIALEDPEERNAME", peer->name);
|
pbx_builtin_setvar_helper(chan, "DIALEDPEERNAME", peer->name);
|
||||||
|
|
||||||
number = (char *)pbx_builtin_getvar_helper(peer, "DIALEDPEERNUMBER");
|
number = pbx_builtin_getvar_helper(peer, "DIALEDPEERNUMBER");
|
||||||
if (!number)
|
if (!number)
|
||||||
number = numsubst;
|
number = numsubst;
|
||||||
pbx_builtin_setvar_helper(chan, "DIALEDPEERNUMBER", number);
|
pbx_builtin_setvar_helper(chan, "DIALEDPEERNUMBER", number);
|
||||||
@@ -1403,7 +1400,10 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!res) {
|
if (!res) {
|
||||||
|
const char *macro_result;
|
||||||
if ((macro_result = pbx_builtin_getvar_helper(peer, "MACRO_RESULT"))) {
|
if ((macro_result = pbx_builtin_getvar_helper(peer, "MACRO_RESULT"))) {
|
||||||
|
char *macro_transfer_dest;
|
||||||
|
|
||||||
if (!strcasecmp(macro_result, "BUSY")) {
|
if (!strcasecmp(macro_result, "BUSY")) {
|
||||||
ast_copy_string(status, macro_result, sizeof(status));
|
ast_copy_string(status, macro_result, sizeof(status));
|
||||||
if (ast_opt_priority_jumping || ast_test_flag(&opts, OPT_PRIORITY_JUMP)) {
|
if (ast_opt_priority_jumping || ast_test_flag(&opts, OPT_PRIORITY_JUMP)) {
|
||||||
@@ -1463,6 +1463,8 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!res) {
|
if (!res) {
|
||||||
|
struct ast_bridge_config config;
|
||||||
|
|
||||||
memset(&config,0,sizeof(struct ast_bridge_config));
|
memset(&config,0,sizeof(struct ast_bridge_config));
|
||||||
if (play_to_caller)
|
if (play_to_caller)
|
||||||
ast_set_flag(&(config.features_caller), AST_FEATURE_PLAY_WARNING);
|
ast_set_flag(&(config.features_caller), AST_FEATURE_PLAY_WARNING);
|
||||||
|
Reference in New Issue
Block a user