mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-02 10:22:46 +00:00
chan_sip: Call not cancelled after receiving a 422 response
When receiving a 422 response, the invitestate variable must be reset to INV_CALLING. ASTERISK-26841 Change-Id: Ia0502d6b02192664cefa4e75bafdd2645ce56099
This commit is contained in:
committed by
Richard Mudgett
parent
8386a38e06
commit
d3ef833b3b
@@ -23917,6 +23917,7 @@ static void handle_response_invite(struct sip_pvt *p, int resp, const char *rest
|
|||||||
case 422: /* Session-Timers: Session interval too small */
|
case 422: /* Session-Timers: Session interval too small */
|
||||||
xmitres = transmit_request(p, SIP_ACK, seqno, XMIT_UNRELIABLE, FALSE);
|
xmitres = transmit_request(p, SIP_ACK, seqno, XMIT_UNRELIABLE, FALSE);
|
||||||
ast_string_field_set(p, theirtag, NULL);
|
ast_string_field_set(p, theirtag, NULL);
|
||||||
|
p->invitestate = INV_CALLING;
|
||||||
proc_422_rsp(p, req);
|
proc_422_rsp(p, req);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user