diff options
author | Gordon Sim <gsim@apache.org> | 2008-03-26 12:14:18 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2008-03-26 12:14:18 +0000 |
commit | 9222ac0989bffebe53706255314fa4c577d2b6d8 (patch) | |
tree | 7b71d235c5c67fbe9c6d1e1c496194d52ce42102 /cpp/src/qpid/broker/ConnectionFactory.cpp | |
parent | 7cc09e96c680aa54c9d988844604f4fa7328c770 (diff) | |
download | qpid-python-9222ac0989bffebe53706255314fa4c577d2b6d8.tar.gz |
Re-enable the establishment of inter-broker links.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@641281 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/ConnectionFactory.cpp')
-rw-r--r-- | cpp/src/qpid/broker/ConnectionFactory.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/cpp/src/qpid/broker/ConnectionFactory.cpp b/cpp/src/qpid/broker/ConnectionFactory.cpp index dfab998c78..cb831f3023 100644 --- a/cpp/src/qpid/broker/ConnectionFactory.cpp +++ b/cpp/src/qpid/broker/ConnectionFactory.cpp @@ -43,8 +43,11 @@ ConnectionFactory::create(ProtocolVersion v, sys::OutputControl& out, const std: sys::ConnectionCodec* ConnectionFactory::create(sys::OutputControl& out, const std::string& id) { - // FIXME aconway 2008-03-18: - return new PreviewConnectionCodec(out, broker, id); + // FIXME aconway 2008-03-18: + + // gsim 2008-03-26 this seems only to be used when creating + // connections from one broker to another + return new PreviewConnectionCodec(out, broker, id, true); } }} // namespace qpid::broker |