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
f4d6dd71
Commit
f4d6dd71
authored
Jan 23, 2008
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge perch.ndb.mysql.com:/home/jonas/src/50-telco-gca
into perch.ndb.mysql.com:/home/jonas/src/50-ndb
parents
c9485283
68b5382a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
6 deletions
+16
-6
ndb/src/common/transporter/TCP_Transporter.cpp
ndb/src/common/transporter/TCP_Transporter.cpp
+16
-6
No files found.
ndb/src/common/transporter/TCP_Transporter.cpp
View file @
f4d6dd71
...
...
@@ -337,22 +337,32 @@ TCP_Transporter::doSend() {
// Empty the SendBuffers
bool
sent_any
=
true
;
while
(
m_sendBuffer
.
dataSize
>
0
)
{
const
char
*
const
sendPtr
=
m_sendBuffer
.
sendPtr
;
const
Uint32
sizeToSend
=
m_sendBuffer
.
sendDataSize
;
if
(
sizeToSend
>
0
){
const
int
nBytesSent
=
inet_send
(
theSocket
,
sendPtr
,
sizeToSend
,
0
);
if
(
nBytesSent
>
0
)
{
if
(
nBytesSent
>
0
)
{
sent_any
=
true
;
m_sendBuffer
.
bytesSent
(
nBytesSent
);
sendCount
++
;
sendSize
+=
nBytesSent
;
if
(
sendCount
==
reportFreq
){
if
(
sendCount
==
reportFreq
)
{
reportSendLen
(
get_callback_obj
(),
remoteNodeId
,
sendCount
,
sendSize
);
sendCount
=
0
;
sendSize
=
0
;
}
}
else
{
}
else
{
if
(
nBytesSent
<
0
&&
InetErrno
==
EAGAIN
&&
sent_any
)
break
;
// Send failed
#if defined DEBUG_TRANSPORTER
ndbout_c
(
"Send Failure(disconnect==%d) to node = %d nBytesSent = %d "
...
...
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