[svn-commits] rmudgett: tag 1.4.11.5 r2138 - /tags/1.4.11.5/q921.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Nov 17 15:30:36 CST 2010


Author: rmudgett
Date: Wed Nov 17 15:30:31 2010
New Revision: 2138

URL: http://svnview.digium.com/svn/libpri?view=rev&rev=2138
Log:
Merged revision 2088 from
https://origsvn.digium.com/svn/libpri/branches/1.4

..........
  r2088 | rmudgett | 2010-11-02 14:11:01 -0500 (Tue, 02 Nov 2010) | 14 lines

  B410P gets incoming call packets on ISDN but Asterisk doesn't see the call.

  The Cisco 1751 with VIC 2-BRI ports sends out SETUP messages on the
  broadcast TEI as if the BRI were PTMP even though it is configured for PTP
  mode.

  Make PTP mode also accept frames on SAPI=0, TEI=127 (Broadcast).

  (closes issue #18232)
  Reported by: lelio
  Patches:
	issue18232_v1.4.patch uploaded by rmudgett (license 664)
  Tested by: lelio
..........

Modified:
    tags/1.4.11.5/q921.c

Modified: tags/1.4.11.5/q921.c
URL: http://svnview.digium.com/svn/libpri/tags/1.4.11.5/q921.c?view=diff&rev=2138&r1=2137&r2=2138
==============================================================================
--- tags/1.4.11.5/q921.c (original)
+++ tags/1.4.11.5/q921.c Wed Nov 17 15:30:31 2010
@@ -2505,7 +2505,9 @@
 		} else {
 			ev = q921_handle_unmatched_frame(ctrl, h, len);
 		}
-	} else if (PTP_MODE(ctrl) && (h->h.sapi == ctrl->sapi) && (h->h.tei == ctrl->tei)) {
+	} else if (PTP_MODE(ctrl)
+		&& h->h.sapi == ctrl->sapi
+		&& (h->h.tei == ctrl->tei || h->h.tei == Q921_TEI_GROUP)) {
 		ev = __q921_receive_qualified(ctrl, h, len);
 	} else {
 		ev = NULL;




More information about the svn-commits mailing list