aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2010-02-26 17:04:29 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2010-02-26 17:04:29 +0000
commit21550d761e539b8fe41d99ce2056e3c47ab5f802 (patch)
tree0a03ce620b7c5e32d9632231cffcd23d9a643c40
parent13bae1ccdd71c7814329947589320603a3ab6628 (diff)
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) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@249100 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--channels/chan_sip.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index e2db50d70..618fdd7ca 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -13092,6 +13092,7 @@ static void handle_response_invite(struct sip_pvt *p, int resp, char *rest, stru
}
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 @@ static void handle_response(struct sip_pvt *p, int resp, char *rest, struct sip_
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;