summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/qmf/Protocol.cpp
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2010-02-26 23:11:19 +0000
committerTed Ross <tross@apache.org>2010-02-26 23:11:19 +0000
commit3296ad1ca8f77bf82fe9fd059c5e44580a4f2f4b (patch)
tree16f81a8ee4c6ff28ea4c3fd6e2aaf9f9a24e71ef /qpid/cpp/src/qmf/Protocol.cpp
parentc1611f64a7c9dce39c19794dd3d887e3f1815b29 (diff)
downloadqpid-python-3296ad1ca8f77bf82fe9fd059c5e44580a4f2f4b.tar.gz
Checkpointing Agent engine code.
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/qmf-devel0.7@916854 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/qmf/Protocol.cpp')
-rw-r--r--qpid/cpp/src/qmf/Protocol.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/qpid/cpp/src/qmf/Protocol.cpp b/qpid/cpp/src/qmf/Protocol.cpp
index faaa4c567d..518d263080 100644
--- a/qpid/cpp/src/qmf/Protocol.cpp
+++ b/qpid/cpp/src/qmf/Protocol.cpp
@@ -43,6 +43,30 @@ const string Protocol::SUBTYPES("_subtypes");
const string Protocol::SUBTYPE_SCHEMA_PROPERTY("qmfProperty");
const string Protocol::SUBTYPE_SCHEMA_METHOD("qmfMethod");
+const string Protocol::AMQP_CONTENT_MAP("amqp/map");
+const string Protocol::AMQP_CONTENT_LIST("amqp/list");
+
+const string Protocol::APP_OPCODE("qmf.opcode");
+
+const string Protocol::OP_AGENT_LOCATE_REQUEST("_agent_locate_request");
+const string Protocol::OP_AGENT_LOCATE_RESPONSE("_agent_locate_response");
+const string Protocol::OP_AGENT_HEARTBEAT_INDICATION("_agent_heartbeat_indication");
+const string Protocol::OP_QUERY_REQUEST("_query_request");
+const string Protocol::OP_QUERY_RESPONSE("_query_response");
+const string Protocol::OP_SUBSCRIBE_REQUEST("_subscribe_request");
+const string Protocol::OP_SUBSCRIBE_RESPONSE("_subscribe_response");
+const string Protocol::OP_SUBSCRIBE_CANCEL_INDICATION("_subscribe_cancel_indication");
+const string Protocol::OP_SUBSCRIBE_REFRESH_REQUEST("_subscribe_refresh_request");
+const string Protocol::OP_DATA_INDICATION("_data_indication");
+const string Protocol::OP_METHOD_REQUEST("_method_request");
+const string Protocol::OP_METHOD_RESPONSE("_method_response");
+
+const string Protocol::CONTENT_PACKAGE("_schema_package");
+const string Protocol::CONTENT_SCHEMA_ID("_schema_id");
+const string Protocol::CONTENT_SCHEMA_CLASS("_schema_class");
+const string Protocol::CONTENT_OBJECT_ID("_object_id");
+const string Protocol::CONTENT_DATA("_data");
+const string Protocol::CONTENT_EVENT("_event");
#if 0
bool Protocol::checkHeader(const Message& /*msg*/, string& /*opcode*/, uint32_t* /*seq*/)