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 /demoscript/Ice | |
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 'demoscript/Ice')
-rw-r--r-- | demoscript/Ice/multicast.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/demoscript/Ice/multicast.py b/demoscript/Ice/multicast.py index 5da2fcaadd3..ddb6a97d7b8 100644 --- a/demoscript/Ice/multicast.py +++ b/demoscript/Ice/multicast.py @@ -76,10 +76,7 @@ def run(clientCmd, serverCmd): # On OS X, using the interface-local address doesn't work, the client fails with # a "Host not reachable" error, instead we use a link-local address with on loopback. # - if Util.isDarwin(): - endpoint = 'udp -h \\"ff02::1:1\\" -p 10000 --interface \\"::1\\"' - else: - endpoint = 'udp -h \\"ff01::1:1\\" -p 10000' + endpoint = 'udp -h \\"ff15::1:1\\" -p 10000' serverCmd += ' --Ice.IPv6=1 --Discover.Endpoints="%s"' % (endpoint) clientCmd += ' --Ice.IPv6=1 --Discover.Proxy="discover:%s"' % (endpoint) |