summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/broker
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-06-13 17:36:23 +0000
committerAlan Conway <aconway@apache.org>2008-06-13 17:36:23 +0000
commit0a99f79e0d90f0d1c0836fbef124bfe269677840 (patch)
tree1a6ee2ce409947d5a6956411483e9182e0f76a0c /cpp/src/qpid/broker
parent34cdb55ef0a755be5f0bbd965418b11e08e86031 (diff)
downloadqpid-python-0a99f79e0d90f0d1c0836fbef124bfe269677840.tar.gz
Fix for broker wraparound problem.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@667603 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker')
-rw-r--r--cpp/src/qpid/broker/Broker.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/cpp/src/qpid/broker/Broker.cpp b/cpp/src/qpid/broker/Broker.cpp
index 606ca1bb59..f008eb23f7 100644
--- a/cpp/src/qpid/broker/Broker.cpp
+++ b/cpp/src/qpid/broker/Broker.cpp
@@ -85,7 +85,7 @@ Broker::Options::Options(const std::string& name) :
mgmtPubInterval(10),
auth(AUTH_DEFAULT),
realm("QPID"),
- replayFlushLimit(1024),
+ replayFlushLimit(0),
replayHardLimit(0)
{
int c = sys::SystemInfo::concurrency();
@@ -109,9 +109,7 @@ Broker::Options::Options(const std::string& name) :
("mgmt-enable,m", optValue(enableMgmt,"yes|no"), "Enable Management")
("mgmt-pub-interval", optValue(mgmtPubInterval, "SECONDS"), "Management Publish Interval")
("auth", optValue(auth, "yes|no"), "Enable authentication, if disabled all incoming connections will be trusted")
- ("realm", optValue(realm, "REALM"), "Use the given realm when performing authentication")
- ("replay-flush-limit", optValue(replayFlushLimit, "KB"), "Send flush request when the replay buffer reaches this limit. 0 means no limit.")
- ("replay-hard-limit", optValue(replayHardLimit, "KB"), "Kill a session if its replay buffer exceeds this limit. 0 means no limit.");
+ ("realm", optValue(realm, "REALM"), "Use the given realm when performing authentication");
}
const std::string empty;