[asterisk-commits] mmichelson: branch 10 r373849 - in /branches/10: ./ channels/chan_sip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Sep 26 16:11:39 CDT 2012
Author: mmichelson
Date: Wed Sep 26 16:11:35 2012
New Revision: 373849
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=373849
Log:
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
Modified:
branches/10/ (props changed)
branches/10/channels/chan_sip.c
Propchange: branches/10/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: branches/10/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/channels/chan_sip.c?view=diff&rev=373849&r1=373848&r2=373849
==============================================================================
--- branches/10/channels/chan_sip.c (original)
+++ branches/10/channels/chan_sip.c Wed Sep 26 16:11:35 2012
@@ -21201,7 +21201,6 @@
}
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);
@@ -21283,6 +21282,7 @@
}
break;
+ case 408: /* Request timeout */
case 405: /* Not allowed */
case 501: /* Not implemented */
xmitres = transmit_request(p, SIP_ACK, seqno, XMIT_UNRELIABLE, FALSE);
More information about the asterisk-commits
mailing list