summaryrefslogtreecommitdiff
path: root/channels/chan_sip.c
diff options
context:
space:
mode:
authorJean Aunis <jean.aunis@prescom.fr>2017-04-20 09:13:13 +0200
committerJean Aunis - Prescom <jean.aunis@prescom.fr>2017-04-26 09:52:35 -0500
commit87a24362a2d3f26308e6d7d0a3c74304ccf88805 (patch)
tree6b55a0d6448ded22efd41141d99551f14880d771 /channels/chan_sip.c
parent7b7d0571f7267e373eca6222760ea08c1d5dbfe9 (diff)
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
Diffstat (limited to 'channels/chan_sip.c')
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index a646e730a..c8e2fa756 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -28951,7 +28951,7 @@ static int handle_incoming(struct sip_pvt *p, struct sip_request *req, struct as
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);