summaryrefslogtreecommitdiff
path: root/agent
diff options
context:
space:
mode:
authorJakub Adam <jakub.adam@ktknet.cz>2016-06-29 06:39:02 +0000
committerOlivier CrĂȘte <olivier.crete@collabora.com>2016-10-26 17:50:35 -0400
commit71dc0022f1df09713316356fe057f0c1cf9ecd45 (patch)
treeea728e45d273493e68d808fb8c6872d9cbe4878f /agent
parent58fdd9b5f7e04e5f77bbc50ba2ac24f592a10b84 (diff)
downloadlibnice-71dc0022f1df09713316356fe057f0c1cf9ecd45.tar.gz
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
Diffstat (limited to 'agent')
-rw-r--r--agent/agent.c4
1 files changed, 2 insertions, 2 deletions
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;
}