summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/broker/Broker.cpp
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2008-05-13 21:38:28 +0000
committerGordon Sim <gsim@apache.org>2008-05-13 21:38:28 +0000
commit7e6635d7e297f6ecf2199028da573bc10437f3ae (patch)
tree7e6ffe5b0d89cd1d496578a6f13a8184849abd33 /cpp/src/qpid/broker/Broker.cpp
parentc36a80f0b03bea42bca570e994d08613b08fd6dd (diff)
downloadqpid-python-7e6635d7e297f6ecf2199028da573bc10437f3ae.tar.gz
QPID-990: Patch from Ted Ross to enable persisting of inter-broker routing entities
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@656023 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/Broker.cpp')
-rw-r--r--cpp/src/qpid/broker/Broker.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/Broker.cpp b/cpp/src/qpid/broker/Broker.cpp
index d80c13f12a..bc862214b7 100644
--- a/cpp/src/qpid/broker/Broker.cpp
+++ b/cpp/src/qpid/broker/Broker.cpp
@@ -329,7 +329,8 @@ Manageable::status_t Broker::ManagementMethod (uint32_t methodId,
return Manageable::STATUS_FEATURE_NOT_IMPLEMENTED;
std::pair<Link::shared_ptr, bool> response =
- links.declare (hp.i_host, hp.i_port, hp.i_useSsl, hp.i_durable);
+ links.declare (hp.i_host, hp.i_port, hp.i_useSsl, hp.i_durable,
+ hp.i_authMechanism, hp.i_username, hp.i_password);
if (hp.i_durable && response.second)
store->create(*response.first);