[asterisk-commits] chan sip: Trigger reinvite if the SDP answer is included in ... (asterisk[14])
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Apr 27 16:10:28 CDT 2017
Jenkins2 has submitted this change and it was merged. ( https://gerrit.asterisk.org/5537 )
Change subject: chan_sip: Trigger reinvite if the SDP answer is included in the SIP ACK
......................................................................
chan_sip: Trigger reinvite if the SDP answer is included in the SIP ACK
Some equipments may send a re-INVITE containing an SDP in the final ACK
request. If this happens in the context of direct media, the remote end
should be updated with a re-INVITE.
This patch queues an "update RTP peer" frame to trigger the re-INVITE,
instead of the "source change" frame wich was used previously.
ASTERISK-26951
Change-Id: I3644d2025f20e086ea9f8f62b486172c52b5b2e6
---
M channels/chan_sip.c
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
George Joseph: Looks good to me, approved
Jenkins2: Approved for Submit
Joshua Colp: Looks good to me, but someone else must approve
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index a646e73..c8e2fa7 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -28951,7 +28951,7 @@
return -1;
}
if (ast_test_flag(&p->flags[0], SIP_DIRECT_MEDIA)) {
- ast_queue_control(p->owner, AST_CONTROL_SRCCHANGE);
+ ast_queue_control(p->owner, AST_CONTROL_UPDATE_RTP_PEER);
}
}
sched_check_pendings(p);
--
To view, visit https://gerrit.asterisk.org/5537
To unsubscribe, visit https://gerrit.asterisk.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I3644d2025f20e086ea9f8f62b486172c52b5b2e6
Gerrit-PatchSet: 1
Gerrit-Project: asterisk
Gerrit-Branch: 14
Gerrit-Owner: Jean Aunis - Prescom <jean.aunis at prescom.fr>
Gerrit-Reviewer: George Joseph <gjoseph at digium.com>
Gerrit-Reviewer: Jenkins2
Gerrit-Reviewer: Joshua Colp <jcolp at digium.com>
More information about the asterisk-commits
mailing list