Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mongoose
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
esp
mongoose
Commits
6cec1d36
Commit
6cec1d36
authored
Feb 19, 2015
by
Sergey Lyubka
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #463 from CurlyMoo/patch-1
Replace obsolete gethostbyname by getaddrinfo
parents
b4924b71
4238370a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
0 deletions
+25
-0
mongoose.c
mongoose.c
+25
-0
No files found.
mongoose.c
View file @
6cec1d36
...
...
@@ -601,6 +601,30 @@ int ns_socketpair(sock_t sp[2]) {
// TODO(lsm): use non-blocking resolver
static
int
ns_resolve2
(
const
char
*
host
,
struct
in_addr
*
ina
)
{
#ifdef NS_ENABLE_GETADDRINFO
int
rv
=
0
;
struct
addrinfo
hints
,
*
servinfo
,
*
p
;
struct
sockaddr_in
*
h
=
NULL
;
char
*
ip
=
NS_MALLOC
(
17
);
memset
(
ip
,
'\0'
,
17
);
memset
(
&
hints
,
0
,
sizeof
hints
);
hints
.
ai_family
=
AF_INET
;
hints
.
ai_socktype
=
SOCK_STREAM
;
if
((
rv
=
getaddrinfo
(
host
,
NULL
,
NULL
,
&
servinfo
))
!=
0
)
{
DBG
((
"getaddrinfo(%s) failed: %s"
,
host
,
strerror
(
errno
)));
return
0
;
}
for
(
p
=
servinfo
;
p
!=
NULL
;
p
=
p
->
ai_next
)
{
memcpy
(
&
h
,
&
p
->
ai_addr
,
sizeof
(
struct
sockaddr_in
*
));
memcpy
(
ina
,
&
h
->
sin_addr
,
sizeof
(
ina
));
}
freeaddrinfo
(
servinfo
);
return
1
;
#else
struct
hostent
*
he
;
if
((
he
=
gethostbyname
(
host
))
==
NULL
)
{
DBG
((
"gethostbyname(%s) failed: %s"
,
host
,
strerror
(
errno
)));
...
...
@@ -609,6 +633,7 @@ static int ns_resolve2(const char *host, struct in_addr *ina) {
return
1
;
}
return
0
;
#endif
}
// Resolve FDQN "host", store IP address in the "ip".
...
...
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