From f9eda9ffceec63e0722735634d4ab54d32b853dd Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Tue, 16 Oct 2007 13:01:33 +0000 Subject: 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 --- cpp/src/qpid/broker/Broker.cpp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'cpp/src/qpid/broker/Broker.cpp') 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; -- cgit v1.2.1