Skip to content
Snippets Groups Projects
Commit 974f1e04 authored by Marcel Loose's avatar Marcel Loose :sunglasses:
Browse files

BugID: 442

Minor textual changes.
parent dfc489b4
No related branches found
No related tags found
No related merge requests found
......@@ -60,8 +60,8 @@ namespace LOFAR
}
void DH_Request::writeBuf(const ConverterCommand& cmd,
const RequestData& req)
void DH_Request::writeBuf(const ConverterCommand& command,
const RequestData& request)
{
// Create the output blob that will hold the request data to be sent to
// the converter server.
......@@ -71,13 +71,13 @@ namespace LOFAR
// \note We don't need to call putStart() and putEnd() on the blob
// stream; this is done by the DataBlobExtra class in the Transport
// library.
bos << cmd
<< req;
bos << command
<< request;
}
void DH_Request::readBuf(ConverterCommand& cmd,
RequestData& req)
void DH_Request::readBuf(ConverterCommand& command,
RequestData& request)
{
// Open the input blob to read the data that were just received from the
// converter client.
......@@ -89,8 +89,8 @@ namespace LOFAR
ASSERT(found && version == theirVersionNr);
// Retrieve the converter request.
bis >> cmd
>> req;
bis >> command
>> request;
// Assert that we're really at the end of the blob.
bis.getEnd();
......
......@@ -59,8 +59,8 @@ namespace LOFAR
}
void DH_Result::writeBuf(const ConverterStatus& sts,
const ResultData& res)
void DH_Result::writeBuf(const ConverterStatus& status,
const ResultData& result)
{
// Create the output blob that will hold the result data to be sent to
// the converter client.
......@@ -70,12 +70,12 @@ namespace LOFAR
// \note We don't need to call putStart() and putEnd() on the blob
// stream; this is done by the DataBlobExtra class in the Transport
// library.
bos << sts
<< res;
bos << status
<< result;
}
void DH_Result::readBuf(ConverterStatus& sts, ResultData& res)
void DH_Result::readBuf(ConverterStatus& status, ResultData& result)
{
// Open the input blob to read the data that were just received from the
// converter server.
......@@ -87,7 +87,7 @@ namespace LOFAR
ASSERT(found && version == theirVersionNr);
// Retrieve the converter result.
bis >> sts >> res;
bis >> status >> result;
// Assert that we're really at the end of the blob.
bis.getEnd();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment