[svn-commits] file: branch 13 r425362 - in /branches/13: ./ res/res_rtp_asterisk.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Sun Oct 12 16:09:17 CDT 2014


Author: file
Date: Sun Oct 12 16:09:14 2014
New Revision: 425362

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=425362
Log:
res_rtp_asterisk: Make the ICE transport check case insensitive as some implementations use 'udp'.
........

Merged revisions 425360 from http://svn.asterisk.org/svn/asterisk/branches/11
........

Merged revisions 425361 from http://svn.asterisk.org/svn/asterisk/branches/12

Modified:
    branches/13/   (props changed)
    branches/13/res/res_rtp_asterisk.c

Propchange: branches/13/
------------------------------------------------------------------------------
Binary property 'branch-12-merged' - no diff available.

Modified: branches/13/res/res_rtp_asterisk.c
URL: http://svnview.digium.com/svn/asterisk/branches/13/res/res_rtp_asterisk.c?view=diff&rev=425362&r1=425361&r2=425362
==============================================================================
--- branches/13/res/res_rtp_asterisk.c (original)
+++ branches/13/res/res_rtp_asterisk.c Sun Oct 12 16:09:14 2014
@@ -522,7 +522,7 @@
 	struct ast_rtp_engine_ice_candidate *remote_candidate;
 
 	/* ICE sessions only support UDP candidates */
-	if (strcmp(candidate->transport, "UDP")) {
+	if (strcasecmp(candidate->transport, "udp")) {
 		return;
 	}
 




More information about the svn-commits mailing list