From: Russell Bryant Date: Tue, 23 May 2006 16:25:37 +0000 (+0000) Subject: update chan_jingle to reflect the recent change to the indicate prototype X-Git-Tag: 1.4.0-beta1~1246 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=32a28ed9cfa5fd959cd317f98378cec5f8677d84;p=thirdparty%2Fasterisk.git update chan_jingle to reflect the recent change to the indicate prototype git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@29703 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_jingle.c b/channels/chan_jingle.c index 4b0a38a312..03712d0c94 100644 --- a/channels/chan_jingle.c +++ b/channels/chan_jingle.c @@ -172,7 +172,7 @@ static int jingle_answer(struct ast_channel *ast); static int jingle_newcall(struct jingle *client, ikspak *pak); static struct ast_frame *jingle_read(struct ast_channel *ast); static int jingle_write(struct ast_channel *ast, struct ast_frame *f); -static int jingle_indicate(struct ast_channel *ast, int condition); +static int jingle_indicate(struct ast_channel *ast, int condition, const void *data, size_t datalen); static int jingle_fixup(struct ast_channel *oldchan, struct ast_channel *newchan); static int jingle_sendhtml(struct ast_channel *ast, int subclass, const char *data, int datalen); static struct jingle_pvt *jingle_alloc(struct jingle *client, const char *from, const char *sid); @@ -1167,7 +1167,7 @@ static int jingle_fixup(struct ast_channel *oldchan, struct ast_channel *newchan return 0; } -static int jingle_indicate(struct ast_channel *ast, int condition) +static int jingle_indicate(struct ast_channel *ast, int condition, const void *data, size_t datalen) { ast_log(LOG_NOTICE, "XXX Implement jingle indicate XXX\n");