summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2007-01-22 15:53:15 +0000
committerGordon Sim <gsim@apache.org>2007-01-22 15:53:15 +0000
commitfbdd84fd3320899fa7885f50e90acf039e9ca3cb (patch)
tree5cdaf47507088e662ed1480a6c72a6e1dcb5d2d0 /cpp
parentd6c1b1023ae636bff3e57992d00b01b0b7602aed (diff)
downloadqpid-python-fbdd84fd3320899fa7885f50e90acf039e9ca3cb.tar.gz
Updated size calculation of request frame.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@498662 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r--cpp/lib/common/framing/AMQRequestBody.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/lib/common/framing/AMQRequestBody.h b/cpp/lib/common/framing/AMQRequestBody.h
index 1a1d3db0e7..390fe77881 100644
--- a/cpp/lib/common/framing/AMQRequestBody.h
+++ b/cpp/lib/common/framing/AMQRequestBody.h
@@ -63,7 +63,7 @@ class AMQRequestBody : public AMQMethodBody
void setResponseMark(ResponseId mark) { data.responseMark=mark; }
protected:
- static const u_int32_t baseSize() { return AMQMethodBody::baseSize()+16; }
+ static const u_int32_t baseSize() { return AMQMethodBody::baseSize()+20; }
void printPrefix(std::ostream& out) const;
private: