mirror of
https://github.com/asterisk/asterisk.git
synced 2025-12-05 20:48:07 +00:00
ARI: Adding a channel to a bridge while a live recording is active blocks
Added the ability to have rules that are checked when adding and/or removing channels to/from a bridge. In this case, if a channel is currently recording and someone attempts to add it to a bridge an "is recording" rule is checked, fails, and a 409 conflict is returned. Also command functions now return an integer value that can be descriptive of what kind of problems, if any, occurred before or during execution. (closes issue ASTERISK-22624) Reported by: Joshua Colp Review: https://reviewboard.asterisk.org/r/2947/ ........ Merged revisions 403749 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@403750 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -49,7 +49,7 @@ int stasis_app_exec(struct ast_channel *chan, const char *app_name, int argc,
|
||||
char *argv[]);
|
||||
|
||||
/*! Callback type for stasis app commands */
|
||||
typedef void *(*stasis_app_command_cb)(struct stasis_app_control *control,
|
||||
typedef int (*stasis_app_command_cb)(struct stasis_app_control *control,
|
||||
struct ast_channel *chan, void *data);
|
||||
|
||||
/*!
|
||||
@@ -63,10 +63,11 @@ typedef void *(*stasis_app_command_cb)(struct stasis_app_control *control,
|
||||
* \param control Control object for the channel to send the command to.
|
||||
* \param command Command function to execute.
|
||||
* \param data Optional data to pass along with the control function.
|
||||
* \return Return value from \a command.
|
||||
* \return \c NULL on error.
|
||||
*
|
||||
* \return zero on success.
|
||||
* \return error code otherwise.
|
||||
*/
|
||||
void *stasis_app_send_command(struct stasis_app_control *control,
|
||||
int stasis_app_send_command(struct stasis_app_control *control,
|
||||
stasis_app_command_cb command, void *data);
|
||||
|
||||
/*!
|
||||
|
||||
Reference in New Issue
Block a user