Author: gsim
Date: Thu Jun  5 03:48:53 2008
New Revision: 663519

URL: http://svn.apache.org/viewvc?rev=663519&view=rev
Log:
Re-introduced previously clobbered realm option.


Modified:
    incubator/qpid/trunk/qpid/cpp/src/qpid/broker/Broker.cpp

Modified: incubator/qpid/trunk/qpid/cpp/src/qpid/broker/Broker.cpp
URL: 
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/src/qpid/broker/Broker.cpp?rev=663519&r1=663518&r2=663519&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/src/qpid/broker/Broker.cpp (original)
+++ incubator/qpid/trunk/qpid/cpp/src/qpid/broker/Broker.cpp Thu Jun  5 
03:48:53 2008
@@ -84,6 +84,7 @@
     enableMgmt(1),
     mgmtPubInterval(10),
     auth(AUTH_DEFAULT),
+    realm("QPID"),
     replayFlushLimit(1024),
     replayHardLimit(0)
 {
@@ -108,6 +109,7 @@
         ("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.");
 }


Reply via email to