[thirdparty-commits] rmudgett: mISDN/trunk r200 - /mISDN/trunk/drivers/isdn/hardware/mISDN/l3_udss1.c
SVN commits to the Digium third-party software repository
thirdparty-commits at lists.digium.com
Fri May 10 16:20:16 CDT 2013
Author: rmudgett
Date: Fri May 10 16:20:14 2013
New Revision: 200
URL: http://svnview.digium.com/svn/thirdparty?view=rev&rev=200
Log:
Allow mISDN NT mode to send PROGRESS messsage.
* Fixed the l3_udss1.c state machine. It accepted "CC_PROGRESS | REQUEST"
in state 10, which was wrong. Now it accepts it in states 7, 9, and 25 as
specified in ETS300102.
(issue AST-1153)
Reported by: Guenther Kelleter
Patches:
progress-misdn.diff (license #6372) patch uploaded by Guenther Kelleter
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=200&r1=199&r2=200
==============================================================================
--- mISDN/trunk/drivers/isdn/hardware/mISDN/l3_udss1.c (original)
+++ mISDN/trunk/drivers/isdn/hardware/mISDN/l3_udss1.c Fri May 10 16:20:14 2013
@@ -2427,7 +2427,7 @@
CC_INFORMATION | REQUEST, l3dss1_information_req},
{ALL_STATES,
CC_NOTIFY | REQUEST, l3dss1_notify_req},
- {SBIT(10),
+ {SBIT(7) | SBIT(9) | SBIT(25),
CC_PROGRESS | REQUEST, l3dss1_progress_req},
{SBIT(0),
CC_RESUME | REQUEST, l3dss1_resume_req},
More information about the thirdparty-commits
mailing list