From fa872f23c8e980a0b9a069be115aaebcd09f74a4 Mon Sep 17 00:00:00 2001 From: Gordon Sim Date: Thu, 18 Jan 2007 14:14:54 +0000 Subject: 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/trunk/qpid@497439 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/lib/common/framing/Value.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'cpp/lib/common/framing/Value.cpp') 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::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; -- cgit v1.2.1