Skip to content
Snippets Groups Projects
Commit 058bc0d5 authored by Richard Mudgett's avatar Richard Mudgett Committed by George Joseph
Browse files

chan_vpb.cc: Fix compile errors.

Fix the usual compile problem when someone adds a new callback to struct
ast_channel_tech.

Change-Id: I9bdeb8a8cc65f03b2d6e4f2eb5809af47c906c32
parent 6d7af725
Branches
Tags
3 merge requests!138Merge branch asterisk-20.3.0 into devel properly,!123Merge asterisk '20.3.0' into devel,!118Draft: manager: AOC-S support for AOCMessage
...@@ -372,6 +372,7 @@ static struct ast_channel_tech vpb_tech = { ...@@ -372,6 +372,7 @@ static struct ast_channel_tech vpb_tech = {
.call = vpb_call, .call = vpb_call,
.hangup = vpb_hangup, .hangup = vpb_hangup,
.answer = vpb_answer, .answer = vpb_answer,
.answer_with_stream_topology = NULL,
.read = vpb_read, .read = vpb_read,
.read_stream = NULL, .read_stream = NULL,
.write = vpb_write, .write = vpb_write,
...@@ -406,6 +407,7 @@ static struct ast_channel_tech vpb_tech_indicate = { ...@@ -406,6 +407,7 @@ static struct ast_channel_tech vpb_tech_indicate = {
.call = vpb_call, .call = vpb_call,
.hangup = vpb_hangup, .hangup = vpb_hangup,
.answer = vpb_answer, .answer = vpb_answer,
.answer_with_stream_topology = NULL,
.read = vpb_read, .read = vpb_read,
.read_stream = NULL, .read_stream = NULL,
.write = vpb_write, .write = vpb_write,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment