summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/PropertiesI.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2004-11-23 16:59:52 +0000
committerMarc Laukien <marc@zeroc.com>2004-11-23 16:59:52 +0000
commit9f3365d304864e08b2abc6699fb1c21cb28fca5f (patch)
tree9c1f014875108d80c05ceda1748addfc9209cee9 /cpp/src/Ice/PropertiesI.cpp
parentmade isFinished more robust (diff)
downloadice-9f3365d304864e08b2abc6699fb1c21cb28fca5f.tar.bz2
ice-9f3365d304864e08b2abc6699fb1c21cb28fca5f.tar.xz
ice-9f3365d304864e08b2abc6699fb1c21cb28fca5f.zip
IcePatch2
Diffstat (limited to 'cpp/src/Ice/PropertiesI.cpp')
-rw-r--r--cpp/src/Ice/PropertiesI.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/cpp/src/Ice/PropertiesI.cpp b/cpp/src/Ice/PropertiesI.cpp
index cd3e7e3f3b9..b9110398ff2 100644
--- a/cpp/src/Ice/PropertiesI.cpp
+++ b/cpp/src/Ice/PropertiesI.cpp
@@ -238,6 +238,25 @@ static const string icePatchProps[] =
"UpdatePeriod"
};
+static const string icePatch2Props[] =
+{
+ "AdapterId",
+ "Admin.AdapterId",
+ "Admin.Endpoints",
+ "Admin.PublishedEndpoints"
+ "Admin.ThreadPool.Size",
+ "Admin.ThreadPool.SizeMax",
+ "Admin.ThreadPool.SizeWarn",
+ "Admin.ThreadPool.StackSize",
+ "Directory",
+ "Endpoints",
+ "PublishedEndpoints"
+ "ThreadPool.Size",
+ "ThreadPool.SizeMax",
+ "ThreadPool.SizeWarn",
+ "ThreadPool.StackSize"
+};
+
static const string iceSSLProps[] =
{
"Client.CertPath*",
@@ -421,6 +440,7 @@ static const PropertyValues validProps[] =
PropertyValues("Ice", iceProps, sizeof(iceProps) / sizeof(iceProps[0])),
PropertyValues("IcePack", icePackProps, sizeof(icePackProps) / sizeof(icePackProps[0])),
PropertyValues("IcePatch", icePatchProps, sizeof(icePatchProps) / sizeof(icePatchProps[0])),
+ PropertyValues("IcePatch2", icePatch2Props, sizeof(icePatch2Props) / sizeof(icePatch2Props[0])),
PropertyValues("IceSSL", iceSSLProps, sizeof(iceSSLProps) / sizeof(iceSSLProps[0])),
PropertyValues("IceStorm", iceStormProps, sizeof(iceStormProps) / sizeof(iceStormProps[0]))
};
@@ -541,6 +561,7 @@ Ice::PropertiesI::parseIceCommandLineOptions(const StringSeq& options)
args = parseCommandLineOptions("IceBox", args);
args = parseCommandLineOptions("IcePack", args);
args = parseCommandLineOptions("IcePatch", args);
+ args = parseCommandLineOptions("IcePatch2", args);
args = parseCommandLineOptions("IceStorm", args);
return args;