From f6ea40d505ea7c472708dba4ab94ad28baedd9d0 Mon Sep 17 00:00:00 2001 From: Benny Prijono Date: Thu, 18 Feb 2010 14:52:05 +0000 Subject: Fixed minor bug (#1026): custom ICE priority table must not assign greater priority for SRFLX than PRFLX candidate type (thanks Saúl Ibarra Corretgé for the report) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@3101 74dad513-b988-da41-8d7b-12977e46ad98 --- pjnath/src/pjnath/ice_strans.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pjnath') diff --git a/pjnath/src/pjnath/ice_strans.c b/pjnath/src/pjnath/ice_strans.c index b5608cb0..d53e5bf3 100644 --- a/pjnath/src/pjnath/ice_strans.c +++ b/pjnath/src/pjnath/ice_strans.c @@ -68,8 +68,8 @@ static pj_uint8_t srflx_pref_table[4] = { #if PJNATH_ICE_PRIO_STD 100, /**< PJ_ICE_HOST_PREF */ - 126, /**< PJ_ICE_SRFLX_PREF */ - 110, /**< PJ_ICE_PRFLX_PREF */ + 110, /**< PJ_ICE_SRFLX_PREF */ + 126, /**< PJ_ICE_PRFLX_PREF */ 0 /**< PJ_ICE_RELAYED_PREF */ #else /* Keep it to 2 bits */ -- cgit v1.2.3