From 71dc0022f1df09713316356fe057f0c1cf9ecd45 Mon Sep 17 00:00:00 2001 From: Jakub Adam Date: Wed, 29 Jun 2016 06:39:02 +0000 Subject: stun: add STUN_USAGE_ICE_COMPATIBILITY_MSICE2 Windows Live Messenger is a discontinued service. The only users of WLM mode seem to be Lync clients, so STUN_USAGE_ICE_COMPATIBILITY_WLM2009 can be repurposed as [MS-ICE2] compatibility. We keep the WLM enumerator for the sake of API compatibility. Differential Revision: https://phabricator.freedesktop.org/D1135 --- agent/agent.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'agent') diff --git a/agent/agent.c b/agent/agent.c index d819d27..8915cbb 100644 --- a/agent/agent.c +++ b/agent/agent.c @@ -257,11 +257,11 @@ agent_to_ice_compatibility (NiceAgent *agent) agent->compatibility == NICE_COMPATIBILITY_MSN ? STUN_USAGE_ICE_COMPATIBILITY_MSN : agent->compatibility == NICE_COMPATIBILITY_WLM2009 ? - STUN_USAGE_ICE_COMPATIBILITY_WLM2009 : + STUN_USAGE_ICE_COMPATIBILITY_MSICE2 : agent->compatibility == NICE_COMPATIBILITY_OC2007 ? STUN_USAGE_ICE_COMPATIBILITY_MSN : agent->compatibility == NICE_COMPATIBILITY_OC2007R2 ? - STUN_USAGE_ICE_COMPATIBILITY_WLM2009 : + STUN_USAGE_ICE_COMPATIBILITY_MSICE2 : STUN_USAGE_ICE_COMPATIBILITY_RFC5245; } -- cgit v1.2.1