void ast_ari_recordings_unmute(struct ast_variable *headers, struct ast_ari_recordings_unmute_args *args, struct ast_ari_response *response) { control_recording(args->recording_name, STASIS_APP_RECORDING_UNMUTE, response); }
void ast_ari_recordings_cancel(struct ast_variable *headers, struct ast_ari_recordings_cancel_args *args, struct ast_ari_response *response) { control_recording(args->recording_name, STASIS_APP_RECORDING_CANCEL, response); }
void ast_ari_recordings_stop(struct ast_variable *headers, struct ast_ari_recordings_stop_args *args, struct ast_ari_response *response) { control_recording(args->recording_name, STASIS_APP_RECORDING_STOP, response); }
void ast_ari_unpause_recording(struct ast_variable *headers, struct ast_unpause_recording_args *args, struct ast_ari_response *response) { control_recording(args->recording_name, STASIS_APP_RECORDING_UNPAUSE, response); }