summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2003-08-14 21:27:24 +0000
committerMark Spencer <markster@digium.com>2003-08-14 21:27:24 +0000
commit0e56b81f4c286060b112fdb053727973fe7f9db9 (patch)
treec94909ea9bc1c1c2f213ca542751c7f2937ebdfd
parent7264ffaabb66b1e744cc315a49161af433fb1181 (diff)
Allow AgentCallbackLogin to specify new location (bug #46)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1334 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rwxr-xr-xchannels/chan_agent.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/channels/chan_agent.c b/channels/chan_agent.c
index 6a04aa560..ff0fa06df 100755
--- a/channels/chan_agent.c
+++ b/channels/chan_agent.c
@@ -915,6 +915,7 @@ static int __login_exec(struct ast_channel *chan, void *data, int callbackmode)
char *opt_user = NULL;
char *options = NULL;
char *context = NULL;
+ char *exten = NULL;
int play_announcement;
char *filename = "agent-loginok";
@@ -934,6 +935,10 @@ static int __login_exec(struct ast_channel *chan, void *data, int callbackmode)
*context = '\0';
context++;
}
+ exten = options;
+ while(*exten && ((*exten < '0') || (*exten > '9'))) exten++;
+ if (!*exten)
+ exten = NULL;
}
}
}
@@ -979,7 +984,11 @@ static int __login_exec(struct ast_channel *chan, void *data, int callbackmode)
if (callbackmode) {
char tmpchan[256] = "";
/* Retrieve login chan */
- res = ast_app_getdata(chan, "agent-newlocation", tmpchan, sizeof(tmpchan) - 1, 0);
+ if (exten) {
+ strncpy(tmpchan, exten, sizeof(tmpchan) - 1);
+ res = 0;
+ } else
+ res = ast_app_getdata(chan, "agent-newlocation", tmpchan, sizeof(tmpchan) - 1, 0);
if (!res) {
if (context && strlen(context) && strlen(tmpchan))
snprintf(p->loginchan, sizeof(p->loginchan), "%s@%s", tmpchan, context);