[asterisk-commits] trunk r26495 - /trunk/channels/chan_h323.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Wed May 10 08:00:34 MST 2006
Author: kpfleming
Date: Wed May 10 10:00:33 2006
New Revision: 26495
URL: http://svn.digium.com/view/asterisk?rev=26495&view=rev
Log:
update the ->indicate() callback for the new arguments
Modified:
trunk/channels/chan_h323.c
Modified: trunk/channels/chan_h323.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_h323.c?rev=26495&r1=26494&r2=26495&view=diff
==============================================================================
--- trunk/channels/chan_h323.c (original)
+++ trunk/channels/chan_h323.c Wed May 10 10:00:33 2006
@@ -204,7 +204,7 @@
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 @@
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;
More information about the asterisk-commits
mailing list