summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/udp/Server.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2014-06-27 15:12:15 +0000
committerBenoit Foucher <benoit@zeroc.com>2014-06-27 15:12:15 +0000
commit79e018c8381153dff3de841a1cf6e1132a32f5aa (patch)
treed979a6feaebeda7938026b65484242a605e7584a /cpp/test/Ice/udp/Server.cpp
parentFixes to the ACM test (diff)
downloadice-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.cpp6
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
{