[asterisk-bugs] [JIRA] (ASTERISK-20804) One leg of the call is locked when a session timer below 60 is received by the asterisk.
Rusty Newton (JIRA)
noreply at issues.asterisk.org
Fri Dec 14 18:16:45 CST 2012
Rusty Newton created ASTERISK-20804:
---------------------------------------
Summary: One leg of the call is locked when a session timer below 60 is received by the asterisk.
Key: ASTERISK-20804
URL: https://issues.asterisk.org/jira/browse/ASTERISK-20804
Project: Asterisk
Issue Type: Bug
Security Level: None
Components: Channels/chan_sip/General
Affects Versions: 1.8.19.0, 10.9.0
Reporter: Everson Pereira
Assignee: Mark Michelson
Severity: Critical
When Asterisk receives an INVITE from a client a session timer with less than 60 seconds, asterisk rejects the call, but the call leg is locked and when you use the command core show channels the call is listed even though it was rejected.
If I change the line 28751, line 29760 in chan_sip.c(as shown below) and set session-minse=1 in sip.conf the problem no longer occurs.
if (peer->stimer.st_min_se < 90) {
to if (peer->stimer.st_min_se < 1) {
and
if (global_min_se < 90) {
to if (global_min_se < 1) {
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the asterisk-bugs
mailing list