summaryrefslogtreecommitdiff
path: root/cpp/config/TestUtil.py
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2006-04-19 13:57:26 +0000
committerMark Spruiell <mes@zeroc.com>2006-04-19 13:57:26 +0000
commit9e516d6a3051e2b164042cbfe650f42ee184d1f5 (patch)
tree65d6508d7112625ee7d95af48007f2f73d49f3fd /cpp/config/TestUtil.py
parentseparating client/server configuration; removing client/server properties (diff)
downloadice-9e516d6a3051e2b164042cbfe650f42ee184d1f5.tar.bz2
ice-9e516d6a3051e2b164042cbfe650f42ee184d1f5.tar.xz
ice-9e516d6a3051e2b164042cbfe650f42ee184d1f5.zip
removing client/server properties for IceSSL
Diffstat (limited to 'cpp/config/TestUtil.py')
-rw-r--r--cpp/config/TestUtil.py26
1 files changed, 9 insertions, 17 deletions
diff --git a/cpp/config/TestUtil.py b/cpp/config/TestUtil.py
index de764030638..e1dda31ccf8 100644
--- a/cpp/config/TestUtil.py
+++ b/cpp/config/TestUtil.py
@@ -242,24 +242,16 @@ else:
if protocol == "ssl":
plugin = " --Ice.Plugin.IceSSL=IceSSL:create"
clientProtocol = plugin + " --Ice.Default.Protocol=ssl" + \
- " --IceSSL.Client.DefaultDir=" + os.path.join(toplevel, "certs") + \
- " --IceSSL.Client.CertFile=c_rsa1024_pub.pem" + \
- " --IceSSL.Client.KeyFile=c_rsa1024_priv.pem" + \
- " --IceSSL.Client.CertAuthFile=cacert.pem"
+ " --IceSSL.DefaultDir=" + os.path.join(toplevel, "certs") + \
+ " --IceSSL.CertFile=c_rsa1024_pub.pem" + \
+ " --IceSSL.KeyFile=c_rsa1024_priv.pem" + \
+ " --IceSSL.CertAuthFile=cacert.pem"
serverProtocol = plugin + " --Ice.Default.Protocol=ssl" + \
- " --IceSSL.Server.DefaultDir=" + os.path.join(toplevel, "certs") + \
- " --IceSSL.Server.CertFile=s_rsa1024_pub.pem" + \
- " --IceSSL.Server.KeyFile=s_rsa1024_priv.pem" + \
- " --IceSSL.Server.CertAuthFile=cacert.pem"
- clientServerProtocol = plugin + " --Ice.Default.Protocol=ssl" + \
- " --IceSSL.Client.DefaultDir=" + os.path.join(toplevel, "certs") + \
- " --IceSSL.Client.CertFile=c_rsa1024_pub.pem" + \
- " --IceSSL.Client.KeyFile=c_rsa1024_priv.pem" + \
- " --IceSSL.Client.CertAuthFile=cacert.pem" + \
- " --IceSSL.Server.DefaultDir=" + os.path.join(toplevel, "certs") + \
- " --IceSSL.Server.CertFile=s_rsa1024_pub.pem" + \
- " --IceSSL.Server.KeyFile=s_rsa1024_priv.pem" + \
- " --IceSSL.Server.CertAuthFile=cacert.pem"
+ " --IceSSL.DefaultDir=" + os.path.join(toplevel, "certs") + \
+ " --IceSSL.CertFile=s_rsa1024_pub.pem" + \
+ " --IceSSL.KeyFile=s_rsa1024_priv.pem" + \
+ " --IceSSL.CertAuthFile=cacert.pem"
+ clientServerProtocol = clientProtocol
else:
clientProtocol = ""
serverProtocol = ""