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
480a15dc
Commit
480a15dc
authored
Feb 13, 2008
by
joerg@trift2
Browse files
Options
Browse Files
Download
Plain Diff
Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-5.1-build
into trift2.:/MySQL/M51/push-5.1
parents
9337cfbb
c78d6169
Changes
1
Show 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 @
480a15dc
...
...
@@ -118,13 +118,21 @@ int main(int argc, char **argv)
while
(
argc
--
)
{
#ifndef WIN32
struct
in_addr
addr
;
#endif
ip
=
*
argv
++
;
/* 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
)
{
taddr
=
addr
.
s_addr
;
#endif
if
(
taddr
==
htonl
(
INADDR_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