[svn-commits] jrose: branch 11 r371355 - in /branches/11: ./ channels/chan_sip.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Thu Aug 16 11:35:54 CDT 2012
Author: jrose
Date: Thu Aug 16 11:35:50 2012
New Revision: 371355
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=371355
Log:
chan_sip: Trigger reinvite if the SDP answer is included in the SIP ACK
Under certain conditions, a SIP transaction involving directmedia wouldn't
trigger a re-invite because the SDP answer was included in an ACK instead
of in a message that we would have triggered the invite with. This patch
just queues a source change control frame if the dialog is using
directmedia when we find sdp for an ACK.
(closes issue AST-913)
Reported by: Thomas Arimont
........
Merged revisions 371337 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........
Merged revisions 371338 from http://svn.asterisk.org/svn/asterisk/branches/10
Modified:
branches/11/ (props changed)
branches/11/channels/chan_sip.c
Propchange: branches/11/
------------------------------------------------------------------------------
Binary property 'branch-10-merged' - no diff available.
Modified: branches/11/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/channels/chan_sip.c?view=diff&rev=371355&r1=371354&r2=371355
==============================================================================
--- branches/11/channels/chan_sip.c (original)
+++ branches/11/channels/chan_sip.c Thu Aug 16 11:35:50 2012
@@ -27376,8 +27376,12 @@
p->pendinginvite = 0;
acked = __sip_ack(p, seqno, 1 /* response */, 0);
if (find_sdp(req)) {
- if (process_sdp(p, req, SDP_T38_NONE))
+ if (process_sdp(p, req, SDP_T38_NONE)) {
return -1;
+ }
+ if (ast_test_flag(&p->flags[0], SIP_DIRECT_MEDIA)) {
+ ast_queue_control(p->owner, AST_CONTROL_SRCCHANGE);
+ }
}
check_pendings(p);
} else if (p->glareinvite == seqno) {
More information about the svn-commits
mailing list