diff options
author | Marc Laukien <marc@zeroc.com> | 2002-05-08 13:01:07 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-05-08 13:01:07 +0000 |
commit | 79e662aaa93cea43aabb8f160883a642679360d8 (patch) | |
tree | 5564c6c9f6acba8aef7500a5ed55ab253fd76b0e /cpp/config/TestUtil.py | |
parent | initial compression (diff) | |
download | ice-79e662aaa93cea43aabb8f160883a642679360d8.tar.bz2 ice-79e662aaa93cea43aabb8f160883a642679360d8.tar.xz ice-79e662aaa93cea43aabb8f160883a642679360d8.zip |
DefaultsAndOverwrites
Diffstat (limited to 'cpp/config/TestUtil.py')
-rw-r--r-- | cpp/config/TestUtil.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/config/TestUtil.py b/cpp/config/TestUtil.py index 8410290b0a8..2d33e643a4d 100644 --- a/cpp/config/TestUtil.py +++ b/cpp/config/TestUtil.py @@ -33,11 +33,11 @@ host = "" if protocol == "ssl": plugin = " --Ice.Plugin.IceSSL=IceSSL:create" - clientProtocol = plugin + " --Ice.DefaultProtocol=ssl" + \ + clientProtocol = plugin + " --Ice.Default.Protocol=ssl" + \ " --IceSSL.Client.CertPath=TOPLEVELDIR/certs --IceSSL.Client.Config=client_sslconfig.xml" - serverProtocol = plugin + " --Ice.DefaultProtocol=ssl" + \ + serverProtocol = plugin + " --Ice.Default.Protocol=ssl" + \ " --IceSSL.Server.CertPath=TOPLEVELDIR/certs --IceSSL.Server.Config=server_sslconfig.xml" - clientServerProtocol = plugin + " --Ice.DefaultProtocol=ssl" + \ + clientServerProtocol = plugin + " --Ice.Default.Protocol=ssl" + \ " --IceSSL.Client.CertPath=TOPLEVELDIR/certs --IceSSL.Client.Config=sslconfig.xml" + \ " --IceSSL.Server.CertPath=TOPLEVELDIR/certs --IceSSL.Server.Config=sslconfig.xml" else: @@ -46,7 +46,7 @@ else: clientServerProtocol = "" if host != "": - defaultHost = " --Ice.DefaultHost=" + host + defaultHost = " --Ice.Default.Host=" + host else: defaultHost = "" |