diff options
author | Benoit Foucher <benoit@zeroc.com> | 2009-12-17 17:00:31 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2009-12-17 17:00:31 +0100 |
commit | 185cdab0b762c465d4a78f7816218cfa88107ac1 (patch) | |
tree | 5a86d2cee2ce812137d1d849876a50eaa23a674c /java/test/Ice/udp/Server.java | |
parent | Add x64 libdb_java48.dll to installers (diff) | |
download | ice-185cdab0b762c465d4a78f7816218cfa88107ac1.tar.bz2 ice-185cdab0b762c465d4a78f7816218cfa88107ac1.tar.xz ice-185cdab0b762c465d4a78f7816218cfa88107ac1.zip |
Fixed long waits in multicast.py script and bug in Java udp test where IPv6 wasn't tested for multicast
Diffstat (limited to 'java/test/Ice/udp/Server.java')
-rw-r--r-- | java/test/Ice/udp/Server.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/test/Ice/udp/Server.java b/java/test/Ice/udp/Server.java index 6fb99ce4636..c25d0f7f428 100644 --- a/java/test/Ice/udp/Server.java +++ b/java/test/Ice/udp/Server.java @@ -53,7 +53,7 @@ public class Server extends test.Util.Application initData.properties.setProperty("Ice.UDP.SndSize", "16384"); String host; - if(initData.properties.getProperty("Ice.IPv6") == "1") + if(initData.properties.getProperty("Ice.IPv6").equals("1")) { host = "\"ff01::1:1\""; } |