[svn-commits] mattf: branch mattf/libpri-1.4-q921-rewrite r1328 - /team/mattf/libpri-1.4-q9...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Nov 17 15:16:15 CST 2009


Author: mattf
Date: Tue Nov 17 15:16:11 2009
New Revision: 1328

URL: http://svnview.digium.com/svn/libpri?view=rev&rev=1328
Log:
outboundbroadcast isn't set at this time, since it is set after the message is transmited, so we must use other criteria to determine the need for broadcast on a setup

Modified:
    team/mattf/libpri-1.4-q921-rewrite/q931.c

Modified: team/mattf/libpri-1.4-q921-rewrite/q931.c
URL: http://svnview.digium.com/svn/libpri/team/mattf/libpri-1.4-q921-rewrite/q931.c?view=diff&rev=1328&r1=1327&r2=1328
==============================================================================
--- team/mattf/libpri-1.4-q921-rewrite/q931.c (original)
+++ team/mattf/libpri-1.4-q921-rewrite/q931.c Tue Nov 17 15:16:11 2009
@@ -3935,7 +3935,10 @@
 			 * If those are true, we need to send the SETUP in a UI frame
 			 * instead of an I-frame.
 			 */
-			uiframe = call->outboundbroadcast;
+			if (BRI_NT_PTMP(ctrl))
+				uiframe = 1;
+			else
+				uiframe = 0;
 			break;
 		case Q931_FACILITY:
 			if (ctrl->tei == Q921_TEI_GROUP) {




More information about the svn-commits mailing list