dect
/
asterisk
Archived
13
0
Fork 0

maxtime is not needed any more now that we actually set the T1 timer

based on the qualify result.


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@46392 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
oej 2006-10-29 08:15:26 +00:00
parent 2218aba4f5
commit 065643a937
1 changed files with 1 additions and 7 deletions

View File

@ -970,7 +970,6 @@ struct sip_pvt {
XXX BUG!!! XXX
*/
int maxtime; /*!< Max time for first response */
int initid; /*!< Auto-congest ID if appropriate (scheduler) */
int autokillid; /*!< Auto-kill ID (scheduler) */
enum transfermodes allowtransfer; /*!< REFER: restriction scheme */
@ -2711,7 +2710,6 @@ static int create_addr_from_peer(struct sip_pvt *dialog, struct sip_peer *peer)
ast_string_field_set(dialog, fromdomain, peer->fromdomain);
if (!ast_strlen_zero(peer->fromuser))
ast_string_field_set(dialog, fromuser, peer->fromuser);
dialog->maxtime = peer->maxms;
dialog->callgroup = peer->callgroup;
dialog->pickupgroup = peer->pickupgroup;
dialog->allowtransfer = peer->allowtransfer;
@ -2877,11 +2875,7 @@ static int sip_call(struct ast_channel *ast, char *dest, int timeout)
if (option_debug)
ast_log(LOG_DEBUG,"Our T38 capability (%d), joint T38 capability (%d)\n", p->t38.capability, p->t38.jointcapability);
transmit_invite(p, SIP_INVITE, 1, 2);
if (p->maxtime)
/* Initialize auto-congest time */
p->initid = ast_sched_add(sched, p->maxtime * 4, auto_congest, p);
else
p->initid = ast_sched_add(sched, SIP_TRANS_TIMEOUT, auto_congest, p);
p->initid = ast_sched_add(sched, SIP_TRANS_TIMEOUT, auto_congest, p);
}
return res;
}