aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_jingle.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-23 16:25:37 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-23 16:25:37 +0000
commit01626a1a609703e5f1664b38846a1643ce0df78f (patch)
treed19052d313e62e8b7077f145e41c994ab69cb444 /channels/chan_jingle.c
parentd985b4edc546285ff5d09c91bf382ebcb8e3b234 (diff)
update chan_jingle to reflect the recent change to the indicate prototype
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@29703 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_jingle.c')
-rw-r--r--channels/chan_jingle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_jingle.c b/channels/chan_jingle.c
index 4b0a38a31..03712d0c9 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");