[asterisk-commits] file: trunk r55088 -
/trunk/channels/chan_jingle.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Fri Feb 16 18:37:30 MST 2007
Author: file
Date: Fri Feb 16 19:37:29 2007
New Revision: 55088
URL: http://svn.digium.com/view/asterisk?view=rev&rev=55088
Log:
Update chan_jingle to new definition of set_rtp_peer.
Modified:
trunk/channels/chan_jingle.c
Modified: trunk/channels/chan_jingle.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_jingle.c?view=diff&rev=55088&r1=55087&r2=55088
==============================================================================
--- trunk/channels/chan_jingle.c (original)
+++ trunk/channels/chan_jingle.c Fri Feb 16 19:37:29 2007
@@ -183,7 +183,7 @@
static struct jingle_pvt *jingle_alloc(struct jingle *client, const char *from, const char *sid);
/*----- RTP interface functions */
static int jingle_set_rtp_peer(struct ast_channel *chan, struct ast_rtp *rtp,
- struct ast_rtp *vrtp, int codecs, int nat_active);
+ struct ast_rtp *vrtp, struct ast_rtp *tpeer, int codecs, int nat_active);
static enum ast_rtp_get_result jingle_get_rtp_peer(struct ast_channel *chan, struct ast_rtp **rtp);
static int jingle_get_codec(struct ast_channel *chan);
@@ -429,7 +429,7 @@
return p->peercapability;
}
-static int jingle_set_rtp_peer(struct ast_channel *chan, struct ast_rtp *rtp, struct ast_rtp *vrtp, int codecs, int nat_active)
+static int jingle_set_rtp_peer(struct ast_channel *chan, struct ast_rtp *rtp, struct ast_rtp *vrtp, struct ast_rtp *tpeer, int codecs, int nat_active)
{
struct jingle_pvt *p;
More information about the asterisk-commits
mailing list