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
c8d07748
Commit
c8d07748
authored
Nov 06, 2006
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb - bug#24011
parent
4037a8d6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
51 additions
and
33 deletions
+51
-33
ndb/src/common/util/socket_io.cpp
ndb/src/common/util/socket_io.cpp
+51
-33
No files found.
ndb/src/common/util/socket_io.cpp
View file @
c8d07748
...
...
@@ -53,10 +53,6 @@ readln_socket(NDB_SOCKET_TYPE socket, int timeout_millis,
if
(
buflen
<=
1
)
return
0
;
int
sock_flags
=
fcntl
(
socket
,
F_GETFL
);
if
(
fcntl
(
socket
,
F_SETFL
,
sock_flags
|
O_NONBLOCK
)
==
-
1
)
return
-
1
;
fd_set
readset
;
FD_ZERO
(
&
readset
);
FD_SET
(
socket
,
&
readset
);
...
...
@@ -71,43 +67,65 @@ readln_socket(NDB_SOCKET_TYPE socket, int timeout_millis,
}
if
(
selectRes
==
-
1
){
fcntl
(
socket
,
F_SETFL
,
sock_flags
);
return
-
1
;
}
buf
[
0
]
=
0
;
const
int
t
=
recv
(
socket
,
buf
,
buflen
,
MSG_PEEK
);
char
*
ptr
=
buf
;
int
len
=
buflen
;
do
{
int
t
;
while
((
t
=
recv
(
socket
,
ptr
,
len
,
MSG_PEEK
))
==
-
1
&&
errno
==
EINTR
);
if
(
t
<
1
)
{
fcntl
(
socket
,
F_SETFL
,
sock_flags
);
return
-
1
;
}
for
(
int
i
=
0
;
i
<
t
;
i
++
)
{
if
(
buf
[
i
]
==
'\n'
){
recv
(
socket
,
buf
,
i
+
1
,
0
);
buf
[
i
]
=
0
;
if
(
i
>
0
&&
buf
[
i
-
1
]
==
'\r'
){
i
--
;
buf
[
i
]
=
0
;
for
(
int
i
=
0
;
i
<
t
;
i
++
)
{
if
(
ptr
[
i
]
==
'\n'
)
{
/**
* Now consume
*/
for
(
len
=
1
+
i
;
len
;
)
{
while
((
t
=
recv
(
socket
,
ptr
,
len
,
0
))
==
-
1
&&
errno
==
EINTR
);
if
(
t
<
1
)
return
-
1
;
ptr
+=
t
;
len
-=
t
;
}
ptr
[
0
]
=
0
;
return
ptr
-
buf
;
}
}
fcntl
(
socket
,
F_SETFL
,
sock_flags
);
return
t
;
for
(
int
tmp
=
t
;
tmp
;
)
{
while
((
t
=
recv
(
socket
,
ptr
,
tmp
,
0
))
==
-
1
&&
errno
==
EINTR
);
if
(
t
<
1
)
{
return
-
1
;
}
ptr
+=
t
;
len
-=
t
;
tmp
-=
t
;
}
if
(
t
==
(
buflen
-
1
)){
recv
(
socket
,
buf
,
t
,
0
);
buf
[
t
]
=
0
;
fcntl
(
socket
,
F_SETFL
,
sock_flags
);
return
buflen
;
FD_ZERO
(
&
readset
);
FD_SET
(
socket
,
&
readset
);
timeout
.
tv_sec
=
(
timeout_millis
/
1000
);
timeout
.
tv_usec
=
(
timeout_millis
%
1000
)
*
1000
;
const
int
selectRes
=
select
(
socket
+
1
,
&
readset
,
0
,
0
,
&
timeout
);
if
(
selectRes
!=
1
){
return
-
1
;
}
}
while
(
len
>
0
);
return
0
;
return
-
1
;
}
extern
"C"
...
...
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