aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_jingle.c
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-17 01:37:29 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-17 01:37:29 +0000
commit372384ed11f05bd0cb2a11ac66b165f3d7d0e2b5 (patch)
tree3291ca2af579a07fccaa9e5ca332e2c6644c3ea3 /channels/chan_jingle.c
parent744ab751e3b26ea0fedf7fc83a0f3e585ebdb763 (diff)
Update chan_jingle to new definition of set_rtp_peer.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@55088 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 9e297f471..b41e49bb5 100644
--- a/channels/chan_jingle.c
+++ b/channels/chan_jingle.c
@@ -183,7 +183,7 @@ static int jingle_sendhtml(struct ast_channel *ast, int subclass, const char *da
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 @@ static int jingle_get_codec(struct ast_channel *chan)
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;