mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-06 13:07:21 +00:00
Remove unsupported channel technology callbacks.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@396713 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -652,11 +652,6 @@ struct ast_channel_tech {
|
||||
/*! \brief Handle an exception, reading a frame */
|
||||
struct ast_frame * (* const exception)(struct ast_channel *chan);
|
||||
|
||||
/* BUGBUG this tech callback is to be removed. */
|
||||
/*! \brief Bridge two channels of the same type together */
|
||||
enum ast_bridge_result (* const bridge)(struct ast_channel *c0, struct ast_channel *c1, int flags,
|
||||
struct ast_frame **fo, struct ast_channel **rc, int timeoutms);
|
||||
|
||||
/*! \brief Bridge two channels of the same type together (early) */
|
||||
enum ast_bridge_result (* const early_bridge)(struct ast_channel *c0, struct ast_channel *c1);
|
||||
|
||||
@@ -681,10 +676,6 @@ struct ast_channel_tech {
|
||||
/*! \brief Write a text frame, in standard format */
|
||||
int (* const write_text)(struct ast_channel *chan, struct ast_frame *frame);
|
||||
|
||||
/* BUGBUG this tech callback is to be removed. */
|
||||
/*! \brief Find bridged channel */
|
||||
struct ast_channel *(* const bridged_channel)(struct ast_channel *chan, struct ast_channel *bridge);
|
||||
|
||||
/*!
|
||||
* \brief Provide additional read items for CHANNEL() dialplan function
|
||||
* \note data should be treated as a const char *.
|
||||
@@ -697,13 +688,6 @@ struct ast_channel_tech {
|
||||
*/
|
||||
int (* func_channel_write)(struct ast_channel *chan, const char *function, char *data, const char *value);
|
||||
|
||||
/* BUGBUG this tech callback is to be removed. */
|
||||
/*! \brief Retrieve base channel (agent and local) */
|
||||
struct ast_channel* (* get_base_channel)(struct ast_channel *chan);
|
||||
|
||||
/*! \brief Set base channel (agent and local) */
|
||||
int (* set_base_channel)(struct ast_channel *chan, struct ast_channel *base);
|
||||
|
||||
/*! \brief Get the unique identifier for the PVT, i.e. SIP call-ID for SIP */
|
||||
const char * (* get_pvt_uniqueid)(struct ast_channel *chan);
|
||||
|
||||
|
Reference in New Issue
Block a user