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
This commit is contained in:
Russell Bryant 2006-05-23 16:25:37 +00:00
parent 16a648aaf1
commit 32a28ed9cf
1 changed files with 2 additions and 2 deletions

View File

@ -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");