From: Joshua Colp Date: Tue, 4 Mar 2008 18:10:34 +0000 (+0000) Subject: In addition to setting the marker bit let's change our ssrc so they know for sure... X-Git-Tag: 1.4.19-rc2~34 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=be005c60d6f9ed4aae34fc6382cf1fa57aef731e;p=thirdparty%2Fasterisk.git In addition to setting the marker bit let's change our ssrc so they know for sure it is a different source. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@105676 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/rtp.c b/main/rtp.c index d75fe4852e..cec29dc4af 100644 --- a/main/rtp.c +++ b/main/rtp.c @@ -1998,6 +1998,7 @@ int ast_rtp_settos(struct ast_rtp *rtp, int tos) void ast_rtp_new_source(struct ast_rtp *rtp) { rtp->set_marker_bit = 1; + rtp->ssrc = ast_random(); return; }