mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-13 00:04:53 +00:00
Bug #765: Modifying Auto-Congestion to p->maxtime * 4 instead of * 2
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1910 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -882,7 +882,7 @@ static int sip_call(struct ast_channel *ast, char *dest, int timeout)
|
||||
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;
|
||||
|
Reference in New Issue
Block a user