[libpri-commits] rmudgett: branch 1.4 r2322 - /branches/1.4/pri.c

SVN commits to the libpri project libpri-commits at lists.digium.com
Mon Jun 2 11:27:19 CDT 2014


Author: rmudgett
Date: Mon Jun  2 11:27:13 2014
New Revision: 2322

URL: http://svnview.digium.com/svn/libpri?view=rev&rev=2322
Log:
Adjust T202 default value to the minimum.

The minimum T202 time specified in Q.921 Section 5.9.7 is 2 seconds.  It
makes sense to set the value to the minimum 2 seconds in order to more
likely get a TEI value before an outgoing call request aborts from T303
timeouts.

PRI-171 #close
Reported by: dcolombo

Modified:
    branches/1.4/pri.c

Modified: branches/1.4/pri.c
URL: http://svnview.digium.com/svn/libpri/branches/1.4/pri.c?view=diff&rev=2322&r1=2321&r2=2322
==============================================================================
--- branches/1.4/pri.c (original)
+++ branches/1.4/pri.c Mon Jun  2 11:27:13 2014
@@ -176,7 +176,7 @@
 
 	ctrl->timers[PRI_TIMER_T200] = 1000;		/* Time between SABME's */
 	ctrl->timers[PRI_TIMER_T201] = ctrl->timers[PRI_TIMER_T200];/* Time between TEI Identity Checks (Default same as T200) */
-	ctrl->timers[PRI_TIMER_T202] = 10 * 1000;	/* Min time between transmission of TEI Identity request messages */
+	ctrl->timers[PRI_TIMER_T202] = 2 * 1000;	/* Min time between transmission of TEI Identity request messages */
 	ctrl->timers[PRI_TIMER_T203] = 10 * 1000;	/* Max time without exchanging packets */
 
 	ctrl->timers[PRI_TIMER_T303] = 4 * 1000;	/* Length between SETUP retransmissions and timeout */




More information about the libpri-commits mailing list