summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/broker/Broker.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-10-16 13:01:33 +0000
committerAlan Conway <aconway@apache.org>2007-10-16 13:01:33 +0000
commitf9eda9ffceec63e0722735634d4ab54d32b853dd (patch)
treec4e1dead9abe4d26397c5291f59dc0c28f34ca21 /cpp/src/qpid/broker/Broker.cpp
parent73afb137deaa9489c5d7126dd11be8095cca3e7a (diff)
downloadqpid-python-f9eda9ffceec63e0722735634d4ab54d32b853dd.tar.gz
Edits to --help message and man page to improve readabiliity.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@585137 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/Broker.cpp')
-rw-r--r--cpp/src/qpid/broker/Broker.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/cpp/src/qpid/broker/Broker.cpp b/cpp/src/qpid/broker/Broker.cpp
index bfb0a09bf0..cfbe6a0bcc 100644
--- a/cpp/src/qpid/broker/Broker.cpp
+++ b/cpp/src/qpid/broker/Broker.cpp
@@ -62,17 +62,18 @@ Broker::Options::Options(const std::string& name) :
stagingThreshold(5000000)
{
addOptions()
- ("port,p", optValue(port,"PORT"), "Use PORT for AMQP connections.")
+ ("port,p", optValue(port,"PORT"),
+ "Tells the broker to listen on PORT")
("worker-threads", optValue(workerThreads, "N"),
- "Broker thread pool size")
+ "Sets the broker thread pool size")
("max-connections", optValue(maxConnections, "N"),
- "Maximum allowed connections")
+ "Sets the maximum allowed connections")
("connection-backlog", optValue(connectionBacklog, "N"),
- "Connection backlog limit for server socket.")
+ "Sets the connection backlog limit for the server socket")
("staging-threshold", optValue(stagingThreshold, "N"),
- "Messages over N bytes are staged to disk.")
+ "Stages messages over N bytes to disk")
("store,s", optValue(store,"LIBNAME"),
- "Name of message store shared library.");
+ "Tells the broker to use the message store shared library LIBNAME for persistence");
}
const std::string empty;