summaryrefslogtreecommitdiff
path: root/res/ari/resource_channels.h
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2015-01-07 18:54:06 +0000
committerMark Michelson <mmichelson@digium.com>2015-01-07 18:54:06 +0000
commit7f836c1c15ce521bf01ab86db27fdfc84967e615 (patch)
tree1649e06a083a0eb7cb6ccda6d0bf148cf4259b4b /res/ari/resource_channels.h
parente83853eebc901a3b0c6c0b66acc268fa62b3fd32 (diff)
Add the ability to continue and originate using priority labels.
With this patch, the following two ARI commands POST /channels POST /channels/{id}/continue Accept a new parameter, label, that can be used to continue to or originate to a priority label in the dialplan. Because this is adding a new parameter to ARI commands, the API version of ARI has been bumped from 1.6.0 to 1.7.0. This patch comes courtesy of Nir Simionovich from Greenfield Tech. Thanks! ASTERISK-24412 #close Reported by Nir Simionovich Review: https://reviewboard.asterisk.org/r/4285 ........ Merged revisions 430337 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@430338 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/ari/resource_channels.h')
-rw-r--r--res/ari/resource_channels.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/res/ari/resource_channels.h b/res/ari/resource_channels.h
index 627f9c97a..dddfcf3a9 100644
--- a/res/ari/resource_channels.h
+++ b/res/ari/resource_channels.h
@@ -60,6 +60,8 @@ struct ast_ari_channels_originate_args {
const char *context;
/*! The priority to dial after the endpoint answers. If omitted, uses 1 */
long priority;
+ /*! The label to dial after the endpoint answers. Will supersede 'priority' if provided. */
+ const char *label;
/*! The application that is subscribed to the originated channel, and passed to the Stasis application. */
const char *app;
/*! The application arguments to pass to the Stasis application. */
@@ -123,6 +125,8 @@ struct ast_ari_channels_originate_with_id_args {
const char *context;
/*! The priority to dial after the endpoint answers. If omitted, uses 1 */
long priority;
+ /*! The label to dial after the endpoint answers. Will supersede priority, if provided */
+ const char *label;
/*! The application that is subscribed to the originated channel, and passed to the Stasis application. */
const char *app;
/*! The application arguments to pass to the Stasis application. */
@@ -195,6 +199,8 @@ struct ast_ari_channels_continue_in_dialplan_args {
const char *extension;
/*! The priority to continue to. */
int priority;
+ /*! The label to continue to - will supersede 'priority' if both are provided. */
+ const char *label;
};
/*!
* \brief Body parsing function for /channels/{channelId}/continue.