mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
res_stasis: remove call to missing function control_continue.
In the shuffling around of res_stasis, control_continue was renamed to stasis_app_control_continue, but the call in res_stasis wasn't updated. In looking into it, it turns out it wasn't really the right thing to do in res_stasis anyways. This patch changes the handling of received a AST_CONTROL_HANGUP frame to be the same as receiving a NULL frame, and removed the declaration of control_continue(), since it doesn't exist any more. (closes issue ASTERISK-22292) Reported by: Denis Smirnov git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@397295 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -55,14 +55,6 @@ int control_dispatch_all(struct stasis_app_control *control,
|
||||
*/
|
||||
void control_wait(struct stasis_app_control *control);
|
||||
|
||||
/*!
|
||||
* \brief Signals that a control object should finish and exit back to the
|
||||
* dialplan.
|
||||
*
|
||||
* \param control Control object to continue.
|
||||
*/
|
||||
void control_continue(struct stasis_app_control *control);
|
||||
|
||||
/*!
|
||||
* \brief Returns true if control_continue() has been called on this \a control.
|
||||
*
|
||||
|
Reference in New Issue
Block a user