dect
/
asterisk
Archived
13
0
Fork 0

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
This commit is contained in:
russell 2006-05-23 16:25:37 +00:00
parent d985b4edc5
commit 01626a1a60
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");