summaryrefslogtreecommitdiff
path: root/include/asterisk/stasis_app.h
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2013-11-13 23:11:32 +0000
committerJoshua Colp <jcolp@digium.com>2013-11-13 23:11:32 +0000
commit67b650543c3ea59418bf159323d7244c343f85f6 (patch)
tree5c7e3cc32898eabb207393983cab28d72f1f6a39 /include/asterisk/stasis_app.h
parentf6593b4156b0daa0a74f1f04dc062a6b24acab6c (diff)
res_ari_channels: Add the ability to stop locally generated ringing on a channel.
Using the 'ring' operation it is possible to start locally generated ringback if the channel is answered. This change adds the ability to stop it by using DELETE. ........ Merged revisions 402804 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@402805 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/stasis_app.h')
-rw-r--r--include/asterisk/stasis_app.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/asterisk/stasis_app.h b/include/asterisk/stasis_app.h
index 8b1f4563a..0f4ca27a9 100644
--- a/include/asterisk/stasis_app.h
+++ b/include/asterisk/stasis_app.h
@@ -284,6 +284,16 @@ int stasis_app_control_continue(struct stasis_app_control *control, const char *
int stasis_app_control_ring(struct stasis_app_control *control);
/*!
+ * \brief Stop locally generated ringing on the channel associated with this control.
+ *
+ * \param control Control for \c res_stasis.
+ *
+ * \return 0 for success.
+ * \return -1 for error.
+ */
+int stasis_app_control_ring_stop(struct stasis_app_control *control);
+
+/*!
* \brief Send DTMF to the channel associated with this control.
*
* \param control Control for \c res_stasis.