[asterisk-commits] mmichelson: branch 1.4 r249100 - /branches/1.4/channels/chan_sip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Feb 26 11:04:38 CST 2010
Author: mmichelson
Date: Fri Feb 26 11:04:29 2010
New Revision: 249100
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=249100
Log:
For T.38 reINVITEs treat a 606 the same as a 488.
(closes issue #16792)
Reported by: vrban
Patches:
t38_606.patch uploaded by vrban (license 756)
Modified:
branches/1.4/channels/chan_sip.c
Modified: branches/1.4/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/channels/chan_sip.c?view=diff&rev=249100&r1=249099&r2=249100
==============================================================================
--- branches/1.4/channels/chan_sip.c (original)
+++ branches/1.4/channels/chan_sip.c Fri Feb 26 11:04:29 2010
@@ -13092,6 +13092,7 @@
}
break;
case 488: /* Not acceptable here */
+ case 606: /* Not Acceptable */
xmitres = transmit_request(p, SIP_ACK, seqno, XMIT_UNRELIABLE, FALSE);
if (reinvite && p->udptl) {
/* If this is a T.38 call, we should go back to
@@ -13646,6 +13647,7 @@
handle_response_invite(p, resp, rest, req, seqno);
break;
case 488: /* Not acceptable here - codec error */
+ case 606: /* Not Acceptable */
if (sipmethod == SIP_INVITE)
handle_response_invite(p, resp, rest, req, seqno);
break;
More information about the asterisk-commits
mailing list