[svn-commits] oej: branch oej/teapot-1.8 r426056 - /team/oej/teapot-1.8/patches/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Oct 20 09:58:27 CDT 2014


Author: oej
Date: Mon Oct 20 09:58:23 2014
New Revision: 426056

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=426056
Log:
Add patch for allowing crypto keys even if using RTP/AVP. Relaxed parsing FTW.

Added:
    team/oej/teapot-1.8/patches/allowcryptoavp.diff   (with props)

Added: team/oej/teapot-1.8/patches/allowcryptoavp.diff
URL: http://svnview.digium.com/svn/asterisk/team/oej/teapot-1.8/patches/allowcryptoavp.diff?view=auto&rev=426056
==============================================================================
--- team/oej/teapot-1.8/patches/allowcryptoavp.diff (added)
+++ team/oej/teapot-1.8/patches/allowcryptoavp.diff Mon Oct 20 09:58:23 2014
@@ -1,0 +1,13 @@
+Index: channels/chan_sip.c
+===================================================================
+--- channels/chan_sip.c	(revision 425984)
++++ channels/chan_sip.c	(working copy)
+@@ -9603,7 +9603,7 @@
+ 				if (audio) {
+ 					if (process_sdp_a_sendonly(value, &sendonly)) {
+ 						processed = TRUE;
+-					} else if (!processed_crypto && process_crypto(p, p->rtp, &p->srtp, value)) {
++					} else if (secure_audio && !processed_crypto && process_crypto(p, p->rtp, &p->srtp, value)) {
+ 						processed_crypto = TRUE;
+ 						processed = TRUE;
+ 					} else if (process_sdp_a_audio(value, p, &newaudiortp, &last_rtpmap_codec)) {

Propchange: team/oej/teapot-1.8/patches/allowcryptoavp.diff
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: team/oej/teapot-1.8/patches/allowcryptoavp.diff
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: team/oej/teapot-1.8/patches/allowcryptoavp.diff
------------------------------------------------------------------------------
    svn:mime-type = text/plain




More information about the svn-commits mailing list