diff options
Diffstat (limited to 'demoscript/Ice/multicast.py')
-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) |