[svn-commits] rmudgett: branch rmudgett/v1.4.11.5 r2124 - /team/rmudgett/v1.4.11.5/q921.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Nov 17 12:16:18 CST 2010


Author: rmudgett
Date: Wed Nov 17 12:16:14 2010
New Revision: 2124

URL: http://svnview.digium.com/svn/libpri?view=rev&rev=2124
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:
    team/rmudgett/v1.4.11.5/q921.c

Modified: team/rmudgett/v1.4.11.5/q921.c
URL: http://svnview.digium.com/svn/libpri/team/rmudgett/v1.4.11.5/q921.c?view=diff&rev=2124&r1=2123&r2=2124
==============================================================================
--- team/rmudgett/v1.4.11.5/q921.c (original)
+++ team/rmudgett/v1.4.11.5/q921.c Wed Nov 17 12:16:14 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