mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-16 14:58:25 +00:00
chan_vpb.cc: Fix compiler error.
Added missing channel technology read/write stream callback initialization. Change-Id: I829043a327d987e0d964485dd3d27964bebbd623
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user