From 1f8f2c2c808c6e3e82ed997af932a125fed4e308 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Turnel?= Date: Tue, 12 Jun 2018 18:08:11 +0200 Subject: [PATCH] Fix ICE Agent not able to start if IPV6 is unreachable --- src/nat/ice-agent.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/nat/ice-agent.cpp b/src/nat/ice-agent.cpp index 601bb6788..b296f066a 100644 --- a/src/nat/ice-agent.cpp +++ b/src/nat/ice-agent.cpp @@ -608,7 +608,6 @@ int IceAgent::gatherIceCandidates () { if (mediaSession.getPrivate()->getAf() == AF_INET6) { if (linphone_core_get_local_ip_for(AF_INET6, nullptr, localAddr) < 0) { lError() << "Fail to get local IPv6"; - return -1; } else addLocalIceCandidates(AF_INET6, localAddr, audioCl, videoCl, textCl); }