diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-06-27 15:12:15 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-06-27 15:12:15 +0000 |
commit | 79e018c8381153dff3de841a1cf6e1132a32f5aa (patch) | |
tree | d979a6feaebeda7938026b65484242a605e7584a /cpp/test/Ice/udp/Server.cpp | |
parent | Fixes to the ACM test (diff) | |
download | ice-79e018c8381153dff3de841a1cf6e1132a32f5aa.tar.bz2 ice-79e018c8381153dff3de841a1cf6e1132a32f5aa.tar.xz ice-79e018c8381153dff3de841a1cf6e1132a32f5aa.zip |
Fixed ICE-5665: use ff15::1:1 IPv6 multicast address instead of ff01::1:1
Diffstat (limited to 'cpp/test/Ice/udp/Server.cpp')
-rw-r--r-- | cpp/test/Ice/udp/Server.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/cpp/test/Ice/udp/Server.cpp b/cpp/test/Ice/udp/Server.cpp index cdf1427e1fd..ba6618b8c3d 100644 --- a/cpp/test/Ice/udp/Server.cpp +++ b/cpp/test/Ice/udp/Server.cpp @@ -40,11 +40,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) string endpoint; if(properties->getProperty("Ice.IPv6") == "1") { -#if defined(__APPLE__) - endpoint = "udp -h \"ff02::1:1\" -p 12020 --interface \"lo0\""; -#else - endpoint = "udp -h \"ff01::1:1\" -p 12020"; -#endif + endpoint = "udp -h \"ff15::1:1\" -p 12020"; } else { |