mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-05 12:42:49 +00:00
ARI: Implement channel hold/unhold.
This puts the channel on hold (rather than queueing a frame from the channel). (closes issue ASTERISK-21619) Review: https://reviewboard.asterisk.org/r/2647/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@393332 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -173,6 +173,18 @@ int stasis_app_control_continue(struct stasis_app_control *control, const char *
|
||||
*/
|
||||
int stasis_app_control_answer(struct stasis_app_control *control);
|
||||
|
||||
/*!
|
||||
* \brief Place the channel associated with the control on hold.
|
||||
* \param control Control for \c res_stasis.
|
||||
*/
|
||||
void stasis_app_control_hold(struct stasis_app_control *control);
|
||||
|
||||
/*!
|
||||
* \brief Remove the channel associated with the control from hold.
|
||||
* \param control Control for \c res_stasis.
|
||||
*/
|
||||
void stasis_app_control_unhold(struct stasis_app_control *control);
|
||||
|
||||
/*!
|
||||
* \brief Returns the most recent snapshot for the associated channel.
|
||||
*
|
||||
|
Reference in New Issue
Block a user