diff options
| author | Charles E. Rolke <chug@apache.org> | 2012-10-17 15:36:05 +0000 |
|---|---|---|
| committer | Charles E. Rolke <chug@apache.org> | 2012-10-17 15:36:05 +0000 |
| commit | 124f1897eaf696caec448394e5769fe2c0b8d82a (patch) | |
| tree | 889ac9fa286a550e21d2f8e4bc609ce7b854b001 /cpp/src/qpid/acl/AclPlugin.cpp | |
| parent | 1fa6c1b8e6a0cd2afafe20193b7277ceff230e18 (diff) | |
| download | qpid-python-124f1897eaf696caec448394e5769fe2c0b8d82a.tar.gz | |
QPID-4373 fix ambiguous CLI args; restore C++ broker schema property
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1399311 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/acl/AclPlugin.cpp')
| -rw-r--r-- | cpp/src/qpid/acl/AclPlugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/acl/AclPlugin.cpp b/cpp/src/qpid/acl/AclPlugin.cpp index 4aaa00a8b0..c3cc92ba88 100644 --- a/cpp/src/qpid/acl/AclPlugin.cpp +++ b/cpp/src/qpid/acl/AclPlugin.cpp @@ -43,8 +43,8 @@ struct AclOptions : public Options { addOptions() ("acl-file", optValue(values.aclFile, "FILE"), "The policy file to load from, loaded from data dir") ("max-connections" , optValue(values.aclMaxConnectTotal, "N"), "The maximum combined number of connections allowed. 0 implies no limit.") - ("max-connections-per-user", optValue(values.aclMaxConnectPerUser, "N"), "The maximum number of connections allowed per user. 0 implies no limit.") - ("max-connections-per-ip" , optValue(values.aclMaxConnectPerIp, "N"), "The maximum number of connections allowed per host IP address. 0 implies no limit.") + ("limit-connections-per-user", optValue(values.aclMaxConnectPerUser, "N"), "The maximum number of connections allowed per user. 0 implies no limit.") + ("limit-connections-per-ip" , optValue(values.aclMaxConnectPerIp, "N"), "The maximum number of connections allowed per host IP address. 0 implies no limit.") ("max-queues-per-user", optValue(values.aclMaxQueuesPerUser, "N"), "The maximum number of queues allowed per user. 0 implies no limit.") ; } |
