Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
974f1e04
Commit
974f1e04
authored
19 years ago
by
Marcel Loose
Browse files
Options
Downloads
Patches
Plain Diff
BugID: 442
Minor textual changes.
parent
dfc489b4
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
LCS/AMC/AMCBase/src/DH_Request.cc
+8
-8
8 additions, 8 deletions
LCS/AMC/AMCBase/src/DH_Request.cc
LCS/AMC/AMCBase/src/DH_Result.cc
+6
-6
6 additions, 6 deletions
LCS/AMC/AMCBase/src/DH_Result.cc
with
14 additions
and
14 deletions
LCS/AMC/AMCBase/src/DH_Request.cc
+
8
−
8
View file @
974f1e04
...
...
@@ -60,8 +60,8 @@ namespace LOFAR
}
void
DH_Request
::
writeBuf
(
const
ConverterCommand
&
c
m
d
,
const
RequestData
&
req
)
void
DH_Request
::
writeBuf
(
const
ConverterCommand
&
c
omman
d
,
const
RequestData
&
req
uest
)
{
// 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
<<
c
m
d
<<
req
;
bos
<<
c
omman
d
<<
req
uest
;
}
void
DH_Request
::
readBuf
(
ConverterCommand
&
c
m
d
,
RequestData
&
req
)
void
DH_Request
::
readBuf
(
ConverterCommand
&
c
omman
d
,
RequestData
&
req
uest
)
{
// 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
>>
c
m
d
>>
req
;
bis
>>
c
omman
d
>>
req
uest
;
// Assert that we're really at the end of the blob.
bis
.
getEnd
();
...
...
This diff is collapsed.
Click to expand it.
LCS/AMC/AMCBase/src/DH_Result.cc
+
6
−
6
View file @
974f1e04
...
...
@@ -59,8 +59,8 @@ namespace LOFAR
}
void
DH_Result
::
writeBuf
(
const
ConverterStatus
&
sts
,
const
ResultData
&
res
)
void
DH_Result
::
writeBuf
(
const
ConverterStatus
&
st
atu
s
,
const
ResultData
&
res
ult
)
{
// 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
<<
st
atu
s
<<
res
ult
;
}
void
DH_Result
::
readBuf
(
ConverterStatus
&
sts
,
ResultData
&
res
)
void
DH_Result
::
readBuf
(
ConverterStatus
&
st
atu
s
,
ResultData
&
res
ult
)
{
// 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
>>
st
atu
s
>>
res
ult
;
// Assert that we're really at the end of the blob.
bis
.
getEnd
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment