aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2010-02-26 17:04:58 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2010-02-26 17:04:58 +0000
commitcc013d0f9ac77aa4166206e1f05d099ce8146224 (patch)
tree8fabbcfc04295ad6806b57112b1e19f3d0935458 /channels
parent76d5869b482bac370702d8cb3c639ff51be35ff4 (diff)
Merged revisions 249100 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r249100 | mmichelson | 2010-02-26 11:04:29 -0600 (Fri, 26 Feb 2010) | 8 lines 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/trunk@249101 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-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 a60bc0e2f..6aa8350e0 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -16903,6 +16903,7 @@ static void handle_response_invite(struct sip_pvt *p, int resp, const char *rest
break;
case 415: /* Unsupported media type */
case 488: /* Not acceptable here */
+ case 606: /* Not Acceptable */
xmitres = transmit_request(p, SIP_ACK, seqno, XMIT_UNRELIABLE, FALSE);
if (p->udptl && p->t38.state == T38_LOCAL_REINVITE) {
change_t38_state(p, T38_DISABLED);
@@ -17596,6 +17597,7 @@ static void handle_response(struct sip_pvt *p, int resp, const char *rest, struc
break;
case 415: /* Unsupported media type */
case 488: /* Not acceptable here - codec error */
+ case 606: /* Not Acceptable */
if (sipmethod == SIP_INVITE)
handle_response_invite(p, resp, rest, req, seqno);
break;