From f6b368216a00049ab3010cedbf9cacbfb16a9048 Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Thu, 28 Feb 2013 21:37:01 +0000 Subject: [PATCH] Fix a bug with ICE and strictrtp where media could get dropped. If the end result of the ICE negotiation resulted in the path for media changing it was possible for the strictrtp code to discard the RTP packets. This change causes strictrtp to enter learning mode once again when the ICE negotiation has completed successfully. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@382296 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_rtp_asterisk.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/res/res_rtp_asterisk.c b/res/res_rtp_asterisk.c index b40c230868..82936d209f 100644 --- a/res/res_rtp_asterisk.c +++ b/res/res_rtp_asterisk.c @@ -1023,6 +1023,20 @@ static struct ast_rtp_engine asterisk_rtp_engine = { #endif }; +static void rtp_learning_seq_init(struct ast_rtp *rtp, uint16_t seq); + +static void ast_rtp_on_ice_complete(pj_ice_sess *ice, pj_status_t status) +{ + struct ast_rtp *rtp = ice->user_data; + + if (status != PJ_SUCCESS || !strictrtp) { + return; + } + + rtp->strict_rtp_state = STRICT_RTP_LEARN; + rtp_learning_seq_init(rtp, (uint16_t)rtp->seqno); +} + static void ast_rtp_on_ice_rx_data(pj_ice_sess *ice, unsigned comp_id, unsigned transport_id, void *pkt, pj_size_t size, const pj_sockaddr_t *src_addr, unsigned src_addr_len) { struct ast_rtp *rtp = ice->user_data; @@ -1069,6 +1083,7 @@ static pj_status_t ast_rtp_on_ice_tx_pkt(pj_ice_sess *ice, unsigned comp_id, uns /* ICE Session interface declaration */ static pj_ice_sess_cb ast_rtp_ice_sess_cb = { + .on_ice_complete = ast_rtp_on_ice_complete, .on_rx_data = ast_rtp_on_ice_rx_data, .on_tx_pkt = ast_rtp_on_ice_tx_pkt, };