[Asterisk-cvs] asterisk/channels chan_sip.c,1.265,1.266
malcolmd at lists.digium.com
malcolmd at lists.digium.com
Fri Jan 9 00:59:42 CST 2004
Update of /usr/cvsroot/asterisk/channels
In directory mongoose.digium.com:/tmp/cvs-serv15912/channels
Modified Files:
chan_sip.c
Log Message:
Bug #765: Modifying Auto-Congestion to p->maxtime * 4 instead of * 2
Index: chan_sip.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_sip.c,v
retrieving revision 1.265
retrieving revision 1.266
diff -u -d -r1.265 -r1.266
--- chan_sip.c 19 Dec 2003 17:42:50 -0000 1.265
+++ chan_sip.c 9 Jan 2004 06:51:25 -0000 1.266
@@ -882,7 +882,7 @@
transmit_invite(p, "INVITE", 1, NULL, NULL, vxml_url,distinctive_ring, 1);
if (p->maxtime) {
/* Initialize auto-congest time */
- p->initid = ast_sched_add(sched, p->maxtime * 2, auto_congest, p);
+ p->initid = ast_sched_add(sched, p->maxtime * 4, auto_congest, p);
}
}
return res;
More information about the svn-commits
mailing list