aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/pbx.h
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-18 15:47:00 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-18 15:47:00 +0000
commitf448f546ff1cca2edbc218cee3275d5c60caa644 (patch)
tree9aec1a3753946be64d209df12f4081e5c12ede4c /include/asterisk/pbx.h
parent1031efbc5e3aeebd088dd2de9cf9e56765a18dce (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: http://svn.digium.com/svn/asterisk/trunk@103765 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/pbx.h')
-rw-r--r--include/asterisk/pbx.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/asterisk/pbx.h b/include/asterisk/pbx.h
index 1082c74b2..1ba9b0d70 100644
--- a/include/asterisk/pbx.h
+++ b/include/asterisk/pbx.h
@@ -864,6 +864,11 @@ int ast_parseable_goto(struct ast_channel *chan, const char *goto_string);
/*!
* \note This function will handle locking the channel as needed.
*/
+int ast_async_parseable_goto(struct ast_channel *chan, const char *goto_string);
+
+/*!
+ * \note This function will handle locking the channel as needed.
+ */
int ast_explicit_goto(struct ast_channel *chan, const char *context, const char *exten, int priority);
/*!