[asterisk-commits] qwell: branch qwell/pjsip-shared-libs r382853 - /team/qwell/pjsip-shared-libs...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Mar 12 11:58:15 CDT 2013


Author: qwell
Date: Tue Mar 12 11:58:11 2013
New Revision: 382853

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=382853
Log:
Workaround addition of group locks in pjlib.

pj_ice_sess_create() was changed to allow passing in a pj_grp_lock_t.  This
will need to be looked into further, at some point.

Modified:
    team/qwell/pjsip-shared-libs/res/res_rtp_asterisk.c

Modified: team/qwell/pjsip-shared-libs/res/res_rtp_asterisk.c
URL: http://svnview.digium.com/svn/asterisk/team/qwell/pjsip-shared-libs/res/res_rtp_asterisk.c?view=diff&rev=382853&r1=382852&r2=382853
==============================================================================
--- team/qwell/pjsip-shared-libs/res/res_rtp_asterisk.c (original)
+++ team/qwell/pjsip-shared-libs/res/res_rtp_asterisk.c Tue Mar 12 11:58:11 2013
@@ -1795,7 +1795,7 @@
 	ast_rtp_instance_set_data(instance, rtp);
 
 	/* Create an ICE session for ICE negotiation */
-	if (icesupport && pj_ice_sess_create(&stun_config, NULL, PJ_ICE_SESS_ROLE_UNKNOWN, 2, &ast_rtp_ice_sess_cb, &ufrag, &passwd, &rtp->ice) == PJ_SUCCESS) {
+	if (icesupport && pj_ice_sess_create(&stun_config, NULL, PJ_ICE_SESS_ROLE_UNKNOWN, 2, &ast_rtp_ice_sess_cb, &ufrag, &passwd, NULL, &rtp->ice) == PJ_SUCCESS) {
 		/* Make this available for the callbacks */
 		rtp->ice->user_data = rtp;
 




More information about the asterisk-commits mailing list