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:
Richard Mudgett
2013-08-15 00:16:39 +00:00
parent 42a2cc685f
commit 62c2b80487
3 changed files with 0 additions and 28 deletions

View File

@@ -378,7 +378,6 @@ static struct ast_channel_tech vpb_tech = {
send_image: NULL,
send_html: NULL,
exception: NULL,
bridge: NULL,
early_bridge: NULL,
indicate: vpb_indicate,
fixup: vpb_fixup,
@@ -387,11 +386,8 @@ static struct ast_channel_tech vpb_tech = {
transfer: NULL,
write_video: NULL,
write_text: NULL,
bridged_channel: NULL,
func_channel_read: NULL,
func_channel_write: NULL,
get_base_channel: NULL,
set_base_channel: NULL
};
static struct ast_channel_tech vpb_tech_indicate = {
@@ -412,7 +408,6 @@ static struct ast_channel_tech vpb_tech_indicate = {
send_image: NULL,
send_html: NULL,
exception: NULL,
bridge: NULL,
early_bridge: NULL,
indicate: NULL,
fixup: vpb_fixup,
@@ -421,11 +416,8 @@ static struct ast_channel_tech vpb_tech_indicate = {
transfer: NULL,
write_video: NULL,
write_text: NULL,
bridged_channel: NULL,
func_channel_read: NULL,
func_channel_write: NULL,
get_base_channel: NULL,
set_base_channel: NULL
};
#if defined(VPB_NATIVE_BRIDGING)