diff options
author | Jose <jose@zeroc.com> | 2016-12-23 00:01:25 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-12-23 00:01:25 +0100 |
commit | ceba96fd8069cfb480f22ae5fb7f6f55634d8f1e (patch) | |
tree | 945009173817c906aaaec26a93661b7d9a888b00 /cpp/test/Ice/udp/AllTests.cpp | |
parent | Fix android test suite builds to use compat mapping (diff) | |
download | ice-ceba96fd8069cfb480f22ae5fb7f6f55634d8f1e.tar.bz2 ice-ceba96fd8069cfb480f22ae5fb7f6f55634d8f1e.tar.xz ice-ceba96fd8069cfb480f22ae5fb7f6f55634d8f1e.zip |
Fixed (ICE-7472) UWP and Mcast interface
In UWP the multicast interface must be send when the
datagram socket is bind.
Diffstat (limited to 'cpp/test/Ice/udp/AllTests.cpp')
-rw-r--r-- | cpp/test/Ice/udp/AllTests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Ice/udp/AllTests.cpp b/cpp/test/Ice/udp/AllTests.cpp index 8356acbf1cf..e2e00f19da2 100644 --- a/cpp/test/Ice/udp/AllTests.cpp +++ b/cpp/test/Ice/udp/AllTests.cpp @@ -149,7 +149,7 @@ allTests(const CommunicatorPtr& communicator) } base = communicator->stringToProxy("test -d:" + endpoint); TestIntfPrxPtr objMcast = ICE_UNCHECKED_CAST(TestIntfPrx, base); -#if !defined(ICE_OS_UWP) && (!defined(__APPLE__) || (defined(__APPLE__) && !TARGET_OS_IPHONE)) +#if (!defined(__APPLE__) || (defined(__APPLE__) && !TARGET_OS_IPHONE)) cout << "testing udp multicast... " << flush; nRetry = 5; |