diff options
| author | Gordon Sim <gsim@apache.org> | 2009-08-19 17:59:25 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2009-08-19 17:59:25 +0000 |
| commit | 8ac3bbdc71bae7d2588b97300208842ea9e0b8c4 (patch) | |
| tree | 369dd5daa8155ebfdb13f07eeade1e3bc1904374 /cpp/src/qpid/cluster/UpdateClient.cpp | |
| parent | 032f8961cb3f7de656fa798cd36cbc2d7fa5cbfb (diff) | |
| download | qpid-python-8ac3bbdc71bae7d2588b97300208842ea9e0b8c4.tar.gz | |
QPID-2058: Add a flag to the version of SessionImpl::send() that takes a FrameSet as content. This flag indicates whether the frames in that frame set are valid for sending over the connection or whether they should be reframed.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@805904 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/UpdateClient.cpp')
| -rw-r--r-- | cpp/src/qpid/cluster/UpdateClient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/cluster/UpdateClient.cpp b/cpp/src/qpid/cluster/UpdateClient.cpp index ac418ffbb6..2e557f2ab6 100644 --- a/cpp/src/qpid/cluster/UpdateClient.cpp +++ b/cpp/src/qpid/cluster/UpdateClient.cpp @@ -213,7 +213,7 @@ class MessageUpdater { framing::MessageTransferBody transfer( framing::ProtocolVersion(), UpdateClient::UPDATE, message::ACCEPT_MODE_NONE, message::ACQUIRE_MODE_PRE_ACQUIRED); - sb.get()->send(transfer, message.payload->getFrames()); + sb.get()->send(transfer, message.payload->getFrames(), !message.payload->isContentReleased()); if (message.payload->isContentReleased()){ uint16_t maxFrameSize = sb.get()->getConnection()->getNegotiatedSettings().maxFrameSize; uint16_t maxContentSize = maxFrameSize - AMQFrame::frameOverhead(); |
