From: Kevin Harwell Date: Thu, 24 Dec 2015 16:18:22 +0000 (-0600) Subject: res_rtp_asterisk: rtp->ice check not wrapped in HAVE_PJPROJECT ifdef X-Git-Tag: 14.0.0-beta1~511 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fchanges%2F52%2F1852%2F2;p=thirdparty%2Fasterisk.git res_rtp_asterisk: rtp->ice check not wrapped in HAVE_PJPROJECT ifdef Change-Id: I19b49112e1b630bd04e859f14ccf96f8ebd6b151 --- diff --git a/res/res_rtp_asterisk.c b/res/res_rtp_asterisk.c index 1fb4e1ceb5..3f65f1344d 100644 --- a/res/res_rtp_asterisk.c +++ b/res/res_rtp_asterisk.c @@ -4866,12 +4866,15 @@ static void ast_rtp_remote_address_set(struct ast_rtp_instance *instance, struct * by checking if we're passive. Without this, we only send the pending packets once a new SSL packet is * received in __rtp_recvfrom. If rtp->ice, this is instead done on_ice_complete */ - if (!rtp->ice && rtp->dtls.dtls_setup == AST_RTP_DTLS_SETUP_PASSIVE) { +#ifdef HAVE_PJPROJECT + if (rtp->ice) { + return; + } +#endif + if (rtp->dtls.dtls_setup == AST_RTP_DTLS_SETUP_PASSIVE) { dtls_srtp_flush_pending(instance, rtp); } #endif - - return; } /*! \brief Write t140 redundacy frame