summaryrefslogtreecommitdiff
path: root/include/asterisk/channel.h
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2013-08-15 00:16:39 +0000
committerRichard Mudgett <rmudgett@digium.com>2013-08-15 00:16:39 +0000
commit62c2b804878a60fe7fc66cdaf9973472bd22065b (patch)
treeb214de643fed4277624f7eb5a3867e1cd66d0b23 /include/asterisk/channel.h
parent42a2cc685f2ac246721f163d20762ef120b309be (diff)
Remove unsupported channel technology callbacks.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@396713 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/channel.h')
-rw-r--r--include/asterisk/channel.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/include/asterisk/channel.h b/include/asterisk/channel.h
index ad229a932..488004fe2 100644
--- a/include/asterisk/channel.h
+++ b/include/asterisk/channel.h
@@ -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);