summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/qmf/AgentImpl.h
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2011-02-02 18:16:57 +0000
committerTed Ross <tross@apache.org>2011-02-02 18:16:57 +0000
commit1e77b7bcf6766afbf161137284edbf2a6a255447 (patch)
tree62febe1cb56d61ba10407ae14c10ffe933742437 /qpid/cpp/src/qmf/AgentImpl.h
parentedcf57cc2939ab1573969b521b96e5e0abe4ea81 (diff)
downloadqpid-python-1e77b7bcf6766afbf161137284edbf2a6a255447.tar.gz
QPID-3032 - Modifications to the QMFv2 implementation:
1) Use the topic exchange as the base for direct and reply-to addresses. 2) Add a strict-security option to the Console and Agent APIs that narrows the messaging patterns used such that they can easily be controlled by broker ACL policy. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1066562 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/qmf/AgentImpl.h')
-rw-r--r--qpid/cpp/src/qmf/AgentImpl.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/qpid/cpp/src/qmf/AgentImpl.h b/qpid/cpp/src/qmf/AgentImpl.h
index b852570418..7fa4f4373a 100644
--- a/qpid/cpp/src/qmf/AgentImpl.h
+++ b/qpid/cpp/src/qmf/AgentImpl.h
@@ -29,6 +29,7 @@
#include "qmf/SchemaCache.h"
#include "qpid/messaging/Session.h"
#include "qpid/messaging/Message.h"
+#include "qpid/messaging/Sender.h"
#include "qpid/sys/Mutex.h"
#include "qpid/sys/Condition.h"
#include <boost/shared_ptr.hpp>
@@ -90,11 +91,13 @@ namespace qmf {
mutable qpid::sys::Mutex lock;
std::string name;
+ std::string directSubject;
uint32_t epoch;
ConsoleSessionImpl& session;
bool touched;
uint32_t untouchedCount;
uint32_t capability;
+ qpid::messaging::Sender sender;
qpid::types::Variant::Map attributes;
uint32_t nextCorrelator;
std::map<uint32_t, boost::shared_ptr<SyncContext> > contextMap;