From 5fb6632c0d9665423dfa6a61227242aab7bd278c Mon Sep 17 00:00:00 2001 From: Brian West Date: Mon, 8 May 2017 16:58:16 -0500 Subject: [PATCH] FS-10267: [freeswitch-core] zrtp_enrollment broken since 1.6.13 #resolve --- src/switch_rtp.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/switch_rtp.c b/src/switch_rtp.c index d19c872c31..408bb57f47 100644 --- a/src/switch_rtp.c +++ b/src/switch_rtp.c @@ -5584,6 +5584,11 @@ static switch_status_t read_rtp_packet(switch_rtp_t *rtp_session, switch_size_t switch_mutex_lock(rtp_session->flag_mutex); for (pmap = *rtp_session->pmaps; pmap && pmap->allocated; pmap = pmap->next) { + if (ntohl(*(int *)(b+4)) == ZRTP_MAGIC_COOKIE) { + accept_packet = 1; + break; + } + if (!pmap->negotiated) { continue; }