diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2010-12-23 17:11:57 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2010-12-23 17:11:57 +0000 |
| commit | c3d6047e94210bd35f7c35b9bba0bc2e60841fa7 (patch) | |
| tree | 6e6ab77a94534863b37069f7b48c82b2bd411f51 /cpp/src/qpid/client/RdmaConnector.cpp | |
| parent | ff152807775cf3ad146742a59bbe44146cbb9a34 (diff) | |
| download | qpid-python-c3d6047e94210bd35f7c35b9bba0bc2e60841fa7.tar.gz | |
Rename Rdma send buffer operations.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1052331 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/RdmaConnector.cpp')
| -rw-r--r-- | cpp/src/qpid/client/RdmaConnector.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/client/RdmaConnector.cpp b/cpp/src/qpid/client/RdmaConnector.cpp index e08ced0abc..6af607198c 100644 --- a/cpp/src/qpid/client/RdmaConnector.cpp +++ b/cpp/src/qpid/client/RdmaConnector.cpp @@ -356,7 +356,7 @@ void RdmaConnector::writebuff(Rdma::AsynchIO&) { if (!codec->canEncode()) { return; } - Rdma::Buffer* buffer = aio->getBuffer(); + Rdma::Buffer* buffer = aio->getSendBuffer(); if (buffer) { size_t encoded = codec->encode(buffer->bytes(), buffer->byteCount()); buffer->dataCount(encoded); @@ -415,7 +415,7 @@ size_t RdmaConnector::decode(const char* buffer, size_t size) } void RdmaConnector::writeDataBlock(const AMQDataBlock& data) { - Rdma::Buffer* buff = aio->getBuffer(); + Rdma::Buffer* buff = aio->getSendBuffer(); framing::Buffer out(buff->bytes(), buff->byteCount()); data.encode(out); buff->dataCount(data.encodedSize()); |
