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
62b7e4e2
Commit
62b7e4e2
authored
Oct 25, 2004
by
tomas@poseidon.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
using my_gethostbyname_r in Ndb_getInAddr
parent
36a2a5e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
16 deletions
+14
-16
ndb/src/common/portlib/NdbTCP.cpp
ndb/src/common/portlib/NdbTCP.cpp
+14
-16
No files found.
ndb/src/common/portlib/NdbTCP.cpp
View file @
62b7e4e2
...
...
@@ -16,29 +16,27 @@
#include <ndb_global.h>
#include <
NdbMutex
.h>
#include <
my_net
.h>
#include <NdbTCP.h>
#if defined NDB_WIN32 || defined SCO
static
NdbMutex
&
LOCK_gethostbyname
=
*
NdbMutex_Create
();
#else
static
NdbMutex
LOCK_gethostbyname
=
NDB_MUTEX_INITIALIZER
;
#endif
extern
"C"
int
Ndb_getInAddr
(
struct
in_addr
*
dst
,
const
char
*
address
)
{
DBUG_ENTER
(
"Ndb_getInAddr"
);
struct
hostent
*
hostPtr
;
NdbMutex_Lock
(
&
LOCK_gethostbyname
);
hostPtr
=
gethostbyname
(
address
);
if
(
hostPtr
!=
NULL
)
{
dst
->
s_addr
=
((
struct
in_addr
*
)
*
hostPtr
->
h_addr_list
)
->
s_addr
;
NdbMutex_Unlock
(
&
LOCK_gethostbyname
);
DBUG_RETURN
(
0
);
{
int
tmp_errno
;
struct
hostent
tmp_hostent
,
*
hp
;
char
buff
[
GETHOSTBYNAME_BUFF_SIZE
];
hp
=
my_gethostbyname_r
(
address
,
&
tmp_hostent
,
buff
,
sizeof
(
buff
),
&
tmp_errno
);
if
(
hp
)
{
memcpy
(
dst
,
hp
->
h_addr
,
min
(
sizeof
(
*
dst
),
(
size_t
)
hp
->
h_length
));
my_gethostbyname_r_free
();
DBUG_RETURN
(
0
);
}
my_gethostbyname_r_free
();
}
NdbMutex_Unlock
(
&
LOCK_gethostbyname
);
/* Try it as aaa.bbb.ccc.ddd. */
dst
->
s_addr
=
inet_addr
(
address
);
if
(
dst
->
s_addr
!=
...
...
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