Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
2027459c
Commit
2027459c
authored
Sep 26, 2004
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
testBasic -n MassiveRollback
Make sure to not receive more that buffer can fit currently
parent
e358ba2e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
37 deletions
+43
-37
ndb/src/common/transporter/TCP_Transporter.cpp
ndb/src/common/transporter/TCP_Transporter.cpp
+43
-37
No files found.
ndb/src/common/transporter/TCP_Transporter.cpp
View file @
2027459c
...
...
@@ -362,9 +362,12 @@ TCP_Transporter::doReceive() {
// Select-function must return the socket for read
// before this method is called
// It reads the external TCP/IP interface once
int
size
=
receiveBuffer
.
sizeOfBuffer
-
receiveBuffer
.
sizeOfData
;
if
(
size
>
0
){
const
int
nBytesRead
=
recv
(
theSocket
,
receiveBuffer
.
insertPtr
,
maxReceiveSize
,
0
);
receiveBuffer
.
insertPtr
,
size
<
maxReceiveSize
?
size
:
maxReceiveSize
,
0
);
if
(
nBytesRead
>
0
)
{
receiveBuffer
.
sizeOfData
+=
nBytesRead
;
...
...
@@ -406,6 +409,9 @@ TCP_Transporter::doReceive() {
}
}
return
nBytesRead
;
}
else
{
return
0
;
}
}
void
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment