diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-04-22 17:44:12 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-04-22 17:44:12 +0200 |
commit | 873b482a66e5914ba3dcf85d17fdc94a62457c6a (patch) | |
tree | 18211a7e8f13d3f4322df9479025ce5f5a74d72c /demoscript/Ice | |
parent | Remove Qt and VC90 settings from Makefiles. (diff) | |
download | ice-873b482a66e5914ba3dcf85d17fdc94a62457c6a.tar.bz2 ice-873b482a66e5914ba3dcf85d17fdc94a62457c6a.tar.xz ice-873b482a66e5914ba3dcf85d17fdc94a62457c6a.zip |
Added IceDiscovery service plugin
Diffstat (limited to 'demoscript/Ice')
-rw-r--r-- | demoscript/Ice/multicast.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demoscript/Ice/multicast.py b/demoscript/Ice/multicast.py index 059fe37cf9c..5da2fcaadd3 100644 --- a/demoscript/Ice/multicast.py +++ b/demoscript/Ice/multicast.py @@ -77,7 +77,7 @@ def run(clientCmd, serverCmd): # 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 \\"lo0\\"' + endpoint = 'udp -h \\"ff02::1:1\\" -p 10000 --interface \\"::1\\"' else: endpoint = 'udp -h \\"ff01::1:1\\" -p 10000' serverCmd += ' --Ice.IPv6=1 --Discover.Endpoints="%s"' % (endpoint) |