summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2008-02-18 15:47:00 +0000
committerJoshua Colp <jcolp@digium.com>2008-02-18 15:47:00 +0000
commite6a260c7472b6647b1c766b77fa97232616befdc (patch)
tree9aec1a3753946be64d209df12f4081e5c12ede4c /main
parent67ac1d44daaeda0e18be037c25a6c56dba60b853 (diff)
Add an API call (ast_async_parseable_goto) which parses a goto string and does an async goto instead of an explicit goto.
(closes issue #11753) Reported by: johan git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@103765 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main')
-rw-r--r--main/pbx.c18
1 files changed, 16 insertions, 2 deletions
diff --git a/main/pbx.c b/main/pbx.c
index e584ea07d..e59ee9ea8 100644
--- a/main/pbx.c
+++ b/main/pbx.c
@@ -7792,7 +7792,7 @@ int ast_async_goto_if_exists(struct ast_channel *chan, const char * context, con
return __ast_goto_if_exists(chan, context, exten, priority, 1);
}
-int ast_parseable_goto(struct ast_channel *chan, const char *goto_string)
+static int pbx_parseable_goto(struct ast_channel *chan, const char *goto_string, int async)
{
char *exten, *pri, *context;
char *stringp;
@@ -7836,8 +7836,22 @@ int ast_parseable_goto(struct ast_channel *chan, const char *goto_string)
if (mode)
ipri = chan->priority + (ipri * mode);
- ast_explicit_goto(chan, context, exten, ipri);
+ if (async)
+ ast_async_goto(chan, context, exten, ipri);
+ else
+ ast_explicit_goto(chan, context, exten, ipri);
+
ast_cdr_update(chan);
return 0;
}
+
+int ast_parseable_goto(struct ast_channel *chan, const char *goto_string)
+{
+ return pbx_parseable_goto(chan, goto_string, 0);
+}
+
+int ast_async_parseable_goto(struct ast_channel *chan, const char *goto_string)
+{
+ return pbx_parseable_goto(chan, goto_string, 1);
+}