dect
/
asterisk
Archived
13
0
Fork 0

If there is no session timer in the INVITE, set it to default value (not unset minimum = -1)

Patch by oej

closes issue #15621
Reported by: fnordian
Tested by: atis


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@216695 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
oej 2009-09-07 13:06:19 +00:00
parent e9993ac73e
commit 706a4e2e00
1 changed files with 2 additions and 1 deletions

View File

@ -20631,7 +20631,8 @@ static int handle_request_invite(struct sip_pvt *p, struct sip_request *req, int
st_interval = uac_max_se;
}
} else {
st_interval = uac_min_se;
/* Set to default max value */
st_interval = global_max_se;
}
break;