mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-02 20:08:17 +00:00
Adds support for a core attended transfer function plus adds some hiding of masquerades.
The attended transfer API call can complete the attended transfer in a number of ways depending on the current bridged states of the channels involved. The hiding of masquerades is done in some bridging-related functions, such as the manager Bridge action and the Bridge dialplan application. In addition, call pickup was edited to "move" a channel rather than masquerade it. Review: https://reviewboard.asterisk.org/r/2511 (closes issue ASTERISK-21334) Reported by Matt Jordan (closes issue Asterisk-21336) Reported by Matt Jordan git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@389848 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -26234,9 +26234,11 @@ struct blind_transfer_cb_data {
|
||||
* we may send out.
|
||||
*
|
||||
* \param chan The new outbound channel
|
||||
* \user_data A blind_transfer_cb_data struct
|
||||
* \param user_data A blind_transfer_cb_data struct
|
||||
* \param transfer_type Unused
|
||||
*/
|
||||
static void blind_transfer_cb(struct ast_channel *chan, void *user_data)
|
||||
static void blind_transfer_cb(struct ast_channel *chan, void *user_data,
|
||||
enum ast_transfer_type transfer_type)
|
||||
{
|
||||
struct blind_transfer_cb_data *cb_data = user_data;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user