[libpri-commits] rmudgett: branch 1.4 r1331 - /branches/1.4/q931.c

SVN commits to the libpri project libpri-commits at lists.digium.com
Tue Nov 17 18:36:23 CST 2009


Author: rmudgett
Date: Tue Nov 17 18:36:20 2009
New Revision: 1331

URL: http://svnview.digium.com/svn/libpri?view=rev&rev=1331
Log:
Merged revision 1328 from
https://origsvn.digium.com/svn/libpri/team/mattf/libpri-1.4-q921-rewrite

..........
  r1328 | mattf | 2009-11-17 15:16:11 -0600 (Tue, 17 Nov 2009) | 1 line

  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:
    branches/1.4/q931.c

Modified: branches/1.4/q931.c
URL: http://svnview.digium.com/svn/libpri/branches/1.4/q931.c?view=diff&rev=1331&r1=1330&r2=1331
==============================================================================
--- branches/1.4/q931.c (original)
+++ branches/1.4/q931.c Tue Nov 17 18:36:20 2009
@@ -3980,7 +3980,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 libpri-commits mailing list