From bfffa008f46b64d51d3c2275ac89876865feb115 Mon Sep 17 00:00:00 2001 From: Automerge script Date: Wed, 26 Sep 2012 21:25:53 +0000 Subject: [PATCH] Merged revisions 373849 via svnmerge from file:///srv/subversion/repos/asterisk/branches/10 ................ r373849 | mmichelson | 2012-09-26 16:11:35 -0500 (Wed, 26 Sep 2012) | 8 lines Move handling of 408 response so there is no misleading warning message. (closes issue ASTERISK-20060) Reported by: Walter Doekes ........ Merged revisions 373848 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10-digiumphones@373877 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_sip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 149646e768..def30b5e87 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -21329,7 +21329,6 @@ static void handle_response_invite(struct sip_pvt *p, int resp, const char *rest } break; - case 408: /* Request timeout */ case 481: /* Call leg does not exist */ /* Could be REFER caused INVITE with replaces */ ast_log(LOG_WARNING, "Re-invite to non-existing call leg on other UA. SIP dialog '%s'. Giving up.\n", p->callid); @@ -21411,6 +21410,7 @@ static void handle_response_invite(struct sip_pvt *p, int resp, const char *rest } break; + case 408: /* Request timeout */ case 405: /* Not allowed */ case 501: /* Not implemented */ xmitres = transmit_request(p, SIP_ACK, seqno, XMIT_UNRELIABLE, FALSE); -- 2.47.2