diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-06-07 10:54:08 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-06-07 10:54:08 +0200 |
commit | 10c84db9450f0ac5025bb6ce583f5c2c7277eafa (patch) | |
tree | b6259c635aad9d4a3a073f79e02ec27ebd138dbe /cpp/test/Ice/udp/Server.cpp | |
parent | Fix (ICE-7978) - python asyncInvocation amzn1 failure (diff) | |
download | ice-10c84db9450f0ac5025bb6ce583f5c2c7277eafa.tar.bz2 ice-10c84db9450f0ac5025bb6ce583f5c2c7277eafa.tar.xz ice-10c84db9450f0ac5025bb6ce583f5c2c7277eafa.zip |
Fixed ICE-7980 - Ice/udp test failure
Diffstat (limited to 'cpp/test/Ice/udp/Server.cpp')
-rw-r--r-- | cpp/test/Ice/udp/Server.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/udp/Server.cpp b/cpp/test/Ice/udp/Server.cpp index 83b26ea58fb..37ab0c72b63 100644 --- a/cpp/test/Ice/udp/Server.cpp +++ b/cpp/test/Ice/udp/Server.cpp @@ -40,14 +40,14 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) { endpoint << "udp -h \"ff15::1:1\" -p " << getTestPort(properties, 10); #if defined(__APPLE__) || defined(_WIN32) - endpoint << " --interface \"::1\""; + endpoint << " --interface \"::1\""; // Use loopback to prevent other machines to answer. #endif } else { endpoint << "udp -h 239.255.1.1 -p " << getTestPort(properties, 10); #if defined(__APPLE__) || defined(_WIN32) - endpoint << " --interface 127.0.0.1"; + endpoint << " --interface 127.0.0.1"; // Use loopback to prevent other machines to answer. #endif } properties->setProperty("McastTestAdapter.Endpoints", endpoint.str()); |