chan_vpb.cc: Fix compiler error.

Added missing channel technology read/write stream callback
initialization.

Change-Id: I829043a327d987e0d964485dd3d27964bebbd623
This commit is contained in:
Richard Mudgett 2017-03-31 13:14:05 -05:00
parent 19e2a2802f
commit e8b1bb3041
1 changed files with 4 additions and 0 deletions

View File

@ -373,7 +373,9 @@ static struct ast_channel_tech vpb_tech = {
hangup: vpb_hangup,
answer: vpb_answer,
read: vpb_read,
read_stream: NULL,
write: vpb_write,
write_stream: NULL,
send_text: NULL,
send_image: NULL,
send_html: NULL,
@ -404,7 +406,9 @@ static struct ast_channel_tech vpb_tech_indicate = {
hangup: vpb_hangup,
answer: vpb_answer,
read: vpb_read,
read_stream: NULL,
write: vpb_write,
write_stream: NULL,
send_text: NULL,
send_image: NULL,
send_html: NULL,