[thirdparty-commits] rmudgett: mISDN/trunk r182 - /mISDN/trunk/drivers/isdn/hardware/mISDN/l3_udss1.c

SVN commits to the Digium third-party software repository thirdparty-commits at lists.digium.com
Wed Sep 15 15:31:44 CDT 2010


Author: rmudgett
Date: Wed Sep 15 15:31:41 2010
New Revision: 182

URL: http://svnview.digium.com/svn/thirdparty?view=rev&rev=182
Log:
The handling of call transfer signaling for mISDN PTMP is not fully implemented.

The handling of call transfer signaling for mISDN PTMP is not fully
implemented.  The signaling of number updates with ISDN/DSS1 ECT
supplementary services (ETS 300 369-1) comes along with a notification
indicator IE and redirection number IE for PTMP.  The implementation in
the current Asterisk mISDN channel unfortunately can handle these
information elements only in a NOTIFY message.  These information elements
are also signaled in a FACILTY message with a RequestSubaddress facility,
when the subscriber is already in the active state (see 9.2.4 and 9.2.5 of
ETS 300 369-1).

**********

abe_2526_ast.patch

* Added support to handle the notification indicator IE and redirection
number IE with the RequestSubaddress facility.

* Made misdn_update_connected_line() send a NOTIFY message if Asterisk
originated the call and it is not connected yet.

* Made misdn_update_connected_line() send a FACILITY message if the call
is already connected.

This patch requires the presence of the associated mISDN patches to
compile.  I had to enhance mISDN to allow the notification indicator IE
and the redirection number IE to be used with a FACILITY message.  Earlier
versions of the Digium enhanced mISDN are no longer going to work.

**********

abe_2526_misdn.patch

* Made an incoming FACILITY message allow the presence of the notification
indicator IE and the redirection number IE.

**********

abe_2526_misdnuser_v3.patch

* Added support to send and receive a FACILITY message with the
notification indicator IE and the redirection number IE.

* Added the ability to send a NOTIFY message in PTMP/NT mode to all
responding subcalls in Q.931 states 6, 7, 8, 9, and 25.

**********

Patches:
      abe_2526_ast.patch uploaded by rmudgett (license 664)
      abe_2526_misdn.patch uploaded by rmudgett (license 664)
      abe_2526_misdnuser_v3.patch uploaded by rmudgett (license 664)
Tested by: rmudgett and reporter

JIRA SWP-2146
JIRA ABE-2526

Modified:
    mISDN/trunk/drivers/isdn/hardware/mISDN/l3_udss1.c

Modified: mISDN/trunk/drivers/isdn/hardware/mISDN/l3_udss1.c
URL: http://svnview.digium.com/svn/thirdparty/mISDN/trunk/drivers/isdn/hardware/mISDN/l3_udss1.c?view=diff&rev=182&r1=181&r2=182
==============================================================================
--- mISDN/trunk/drivers/isdn/hardware/mISDN/l3_udss1.c (original)
+++ mISDN/trunk/drivers/isdn/hardware/mISDN/l3_udss1.c Wed Sep 15 15:31:41 2010
@@ -463,8 +463,8 @@
 static int ie_RESTART[] = {IE_CHANNEL_ID, IE_DISPLAY, IE_RESTART_IND |
 	IE_MANDATORY, -1};
 #endif	/* NOT_USED */
-static int ie_FACILITY[] = {IE_FACILITY | IE_MANDATORY, IE_DISPLAY, IE_CALLED_PN,
-	IE_CALLED_SUB, -1};
+static int ie_FACILITY[] = {IE_FACILITY | IE_MANDATORY, IE_NOTIFY, IE_DISPLAY, IE_CALLED_PN,
+	IE_CALLED_SUB, IE_REDIR_DN, -1};
 static int ie_REGISTER[] = {IE_FACILITY, IE_DISPLAY, -1};
 
 static int l3_valid_states[] = {0,1,2,3,4,6,7,8,9,10,11,12,15,17,19,25,31,-1};




More information about the thirdparty-commits mailing list