From 67b650543c3ea59418bf159323d7244c343f85f6 Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Wed, 13 Nov 2013 23:11:32 +0000 Subject: 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 --- res/stasis/control.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'res/stasis') diff --git a/res/stasis/control.c b/res/stasis/control.c index 6c61df061..868aff5ea 100644 --- a/res/stasis/control.c +++ b/res/stasis/control.c @@ -341,6 +341,21 @@ int stasis_app_control_ring(struct stasis_app_control *control) return 0; } +static void *app_control_ring_stop(struct stasis_app_control *control, + struct ast_channel *chan, void *data) +{ + ast_indicate(control->channel, -1); + + return NULL; +} + +int stasis_app_control_ring_stop(struct stasis_app_control *control) +{ + stasis_app_send_command_async(control, app_control_ring_stop, NULL); + + return 0; +} + struct stasis_app_control_mute_data { enum ast_frame_type frametype; unsigned int direction; -- cgit v1.2.3