diff options
| author | Alan Conway <aconway@apache.org> | 2007-03-13 21:23:20 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2007-03-13 21:23:20 +0000 |
| commit | 63226e024b8ff81f250636855623bf70cd2f3338 (patch) | |
| tree | 98a819e5e0430e8eaff520fbb85ded8c6abd9d69 /cpp/lib | |
| parent | 18266b9714d209bdd4088c3400212c29d42f1068 (diff) | |
| download | qpid-python-63226e024b8ff81f250636855623bf70cd2f3338.tar.gz | |
Merged revisions 497439 via svnmerge from
https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid
........
r497439 | gsim | 2007-01-18 09:14:54 -0500 (Thu, 18 Jan 2007) | 3 lines
Added the non-standard 'binary' type to the field table implementation to support the java client.
........
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@517878 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/lib')
| -rw-r--r-- | cpp/lib/common/framing/Value.cpp | 5 | ||||
| -rw-r--r-- | cpp/lib/common/framing/Value.h | 8 |
2 files changed, 13 insertions, 0 deletions
diff --git a/cpp/lib/common/framing/Value.cpp b/cpp/lib/common/framing/Value.cpp index d193286636..9b1f3bbc94 100644 --- a/cpp/lib/common/framing/Value.cpp +++ b/cpp/lib/common/framing/Value.cpp @@ -85,6 +85,11 @@ std::auto_ptr<Value> Value::decode_value(Buffer& buffer) case 'F': value.reset(new FieldTableValue()); break; + + //non-standard types, introduced in java client for JMS compliance + case 'x': + value.reset(new BinaryValue()); + break; default: std::stringstream out; out << "Unknown field table value type: " << type; diff --git a/cpp/lib/common/framing/Value.h b/cpp/lib/common/framing/Value.h index 6d240c2eb9..e7ae865a70 100644 --- a/cpp/lib/common/framing/Value.h +++ b/cpp/lib/common/framing/Value.h @@ -158,6 +158,14 @@ class EmptyValue : public Value { virtual void print(std::ostream& out) const; }; +//non-standard types, introduced in java client for JMS compliance +class BinaryValue : public StringValue { + public: + BinaryValue(const std::string& v) : StringValue(v) {} + BinaryValue() {} + virtual char getType() const { return 'x'; } +}; + }} // qpid::framing #endif |
