summaryrefslogtreecommitdiff
path: root/include/asterisk/pbx.h
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2012-03-16 15:38:45 +0000
committerMark Michelson <mmichelson@digium.com>2012-03-16 15:38:45 +0000
commit827f2eae920e403dff3cc240b7b74e65b7afc7c1 (patch)
treee44e249b08ccacc040736667b6358eba8f7ef9c1 /include/asterisk/pbx.h
parent9ac6938e09ea60717b558cddd3f81a3c340c1e32 (diff)
Revert the pre-dial addition.
The code may be just fine, but it had not received a "ship it!" on review board yet. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@359857 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/pbx.h')
-rw-r--r--include/asterisk/pbx.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/include/asterisk/pbx.h b/include/asterisk/pbx.h
index 2b10cc84f..f7dc7b919 100644
--- a/include/asterisk/pbx.h
+++ b/include/asterisk/pbx.h
@@ -331,8 +331,6 @@ struct ast_pbx_args {
struct {
/*! Do not hangup the channel when the PBX is complete. */
unsigned int no_hangup_chan:1;
- /*! Reuse existing pbx on the channel (used for arbitrarily jumping into dialplan) */
- unsigned int use_existing_pbx:1;
};
};
};
@@ -1114,23 +1112,6 @@ void pbx_set_overrideswitch(const char *newval);
int ast_goto_if_exists(struct ast_channel *chan, const char *context, const char *exten, int priority);
/*!
- * \note This function will check the validity of a goto target, see
- * if it's reachable given the current channel state, and save the
- * parsed tokens to the given buffers.
- */
-int ast_pbx_exten_parse(struct ast_channel *chan, const char *goto_target, struct ast_str *context, struct ast_str *exten, struct ast_str *priority, struct varshead *varshead);
-
-/*!
- * \note This function will run dialplan on a channel at context,exten,priority
- */
-enum ast_pbx_result ast_pbx_exten_run_parseargs(struct ast_channel *chan, const char *gosub_args, int restore_dialplan_location);
-
-/*!
- * \note This function will run dialplan on a channel at context,exten,priority and set also ARG
- */
-enum ast_pbx_result ast_pbx_exten_run(struct ast_channel *chan, const char *context, const char *exten, int priority, struct varshead *varshead, int restore_dialplan_location);
-
-/*!
* \note This function will handle locking the channel as needed.
*/
int ast_parseable_goto(struct ast_channel *chan, const char *goto_string);