[asterisk-commits] oej: branch 1.4 r65123 - in /branches/1.4: ./
channels/chan_sip.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Fri May 18 11:16:09 MST 2007
Author: oej
Date: Fri May 18 13:16:09 2007
New Revision: 65123
URL: http://svn.digium.com/view/asterisk?view=rev&rev=65123
Log:
Merged revisions 65122 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2
........
r65122 | oej | 2007-05-18 20:10:46 +0200 (Fri, 18 May 2007) | 2 lines
Not getting an ACK to a 200 OK in the initial invite is critical to the call.
........
Modified:
branches/1.4/ (props changed)
branches/1.4/channels/chan_sip.c
Propchange: branches/1.4/
------------------------------------------------------------------------------
Binary property 'branch-1.2-merged' - no diff available.
Modified: branches/1.4/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_sip.c?view=diff&rev=65123&r1=65122&r2=65123
==============================================================================
--- branches/1.4/channels/chan_sip.c (original)
+++ branches/1.4/channels/chan_sip.c Fri May 18 13:16:09 2007
@@ -13227,6 +13227,7 @@
const char *required;
unsigned int required_profile = 0;
struct ast_channel *c = NULL; /* New channel */
+ int reinvite = 0;
/* Find out what they support */
if (!p->sipoptions) {
@@ -13532,6 +13533,7 @@
else
ast_log(LOG_DEBUG, "Got a SIP re-transmit of INVITE for call %s\n", p->callid);
}
+ reinvite = 1;
c = p->owner;
}
@@ -13703,7 +13705,8 @@
}
/* Respond to normal re-invite */
if (sendok)
- transmit_response_with_sdp(p, "200 OK", req, ast_test_flag(req, SIP_PKT_IGNORE) ? XMIT_UNRELIABLE : XMIT_CRITICAL);
+ /* If this is not a re-invite or something to ignore - it's critical */
+ transmit_response_with_sdp(p, "200 OK", req, (reinvite || ast_test_flag(req, SIP_PKT_IGNORE)) ? XMIT_UNRELIABLE : XMIT_CRITICAL);
}
p->invitestate = INV_TERMINATED;
break;
More information about the asterisk-commits
mailing list