Author: file Date: Sun Oct 12 16:08:45 2014 New Revision: 425361 URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=425361 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 Modified: branches/12/ (props changed) branches/12/res/res_rtp_asterisk.c Propchange: branches/12/ ------------------------------------------------------------------------------ Binary property 'branch-11-merged' - no diff available. Modified: branches/12/res/res_rtp_asterisk.c URL: http://svnview.digium.com/svn/asterisk/branches/12/res/res_rtp_asterisk.c?view=diff&rev=425361&r1=425360&r2=425361 ============================================================================== --- branches/12/res/res_rtp_asterisk.c (original) +++ branches/12/res/res_rtp_asterisk.c Sun Oct 12 16:08:45 2014 @@ -520,7 +520,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; } -- _____________________________________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- svn-commits mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/svn-commits
