mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
update the ->indicate() callback for the new arguments
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@26495 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -204,7 +204,7 @@ static int oh323_hangup(struct ast_channel *c);
|
||||
static int oh323_answer(struct ast_channel *c);
|
||||
static struct ast_frame *oh323_read(struct ast_channel *c);
|
||||
static int oh323_write(struct ast_channel *c, struct ast_frame *frame);
|
||||
static int oh323_indicate(struct ast_channel *c, int condition);
|
||||
static int oh323_indicate(struct ast_channel *c, int condition, const void *data, size_t datalen);
|
||||
static int oh323_fixup(struct ast_channel *oldchan, struct ast_channel *newchan);
|
||||
|
||||
static const struct ast_channel_tech oh323_tech = {
|
||||
@@ -625,7 +625,7 @@ static int oh323_write(struct ast_channel *c, struct ast_frame *frame)
|
||||
return res;
|
||||
}
|
||||
|
||||
static int oh323_indicate(struct ast_channel *c, int condition)
|
||||
static int oh323_indicate(struct ast_channel *c, int condition, const void *data, size_t datalen)
|
||||
{
|
||||
|
||||
struct oh323_pvt *pvt = (struct oh323_pvt *) c->tech_pvt;
|
||||
|
Reference in New Issue
Block a user