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
72073063
Commit
72073063
authored
Feb 11, 2008
by
df@pippilotta.erinye.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make this build on Windows.
parent
21e767aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
extra/resolveip.c
extra/resolveip.c
+8
-0
No files found.
extra/resolveip.c
View file @
72073063
...
@@ -118,13 +118,21 @@ int main(int argc, char **argv)
...
@@ -118,13 +118,21 @@ int main(int argc, char **argv)
while
(
argc
--
)
while
(
argc
--
)
{
{
#ifndef WIN32
struct
in_addr
addr
;
struct
in_addr
addr
;
#endif
ip
=
*
argv
++
;
ip
=
*
argv
++
;
/* Not compatible with IPv6! Probably should use getnameinfo(). */
/* Not compatible with IPv6! Probably should use getnameinfo(). */
#ifdef WIN32
taddr
=
inet_addr
(
ip
);
if
(
taddr
!=
INADDR_NONE
)
{
#else
if
(
inet_aton
(
ip
,
&
addr
)
!=
0
)
if
(
inet_aton
(
ip
,
&
addr
)
!=
0
)
{
{
taddr
=
addr
.
s_addr
;
taddr
=
addr
.
s_addr
;
#endif
if
(
taddr
==
htonl
(
INADDR_BROADCAST
))
if
(
taddr
==
htonl
(
INADDR_BROADCAST
))
{
{
puts
(
"Broadcast"
);
puts
(
"Broadcast"
);
...
...
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