]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
chan_sip: Trigger reinvite if the SDP answer is included in the SIP ACK
authorMatthew Jordan <mjordan@digium.com>
Fri, 2 Nov 2012 15:24:06 +0000 (15:24 +0000)
committerMatthew Jordan <mjordan@digium.com>
Fri, 2 Nov 2012 15:24:06 +0000 (15:24 +0000)
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

git-svn-id: https://origsvn.digium.com/svn/asterisk/certified/branches/1.8.15@375588 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c

index e86e3d00e64e7199334548d8fe4740c1c32ad427..8272801fe939268f7b445aeec27df2cbecd20259 100644 (file)
@@ -25924,8 +25924,12 @@ static int handle_incoming(struct sip_pvt *p, struct sip_request *req, struct as
                        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) {