From c3d6047e94210bd35f7c35b9bba0bc2e60841fa7 Mon Sep 17 00:00:00 2001 From: Andrew Stitcher Date: Thu, 23 Dec 2010 17:11:57 +0000 Subject: Rename Rdma send buffer operations. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1052331 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/client/RdmaConnector.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp/src/qpid/client/RdmaConnector.cpp') 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()); -- cgit v1.2.1