Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
0f3085c8
Commit
0f3085c8
authored
Jun 13, 2012
by
Francois Gouget
Committed by
Alexandre Julliard
Jun 13, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iphlpapi: Don't rely on the HAVE_XXX macros having a numeric values.
parent
697cea2f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
ipstats.c
dlls/iphlpapi/ipstats.c
+5
-5
No files found.
dlls/iphlpapi/ipstats.c
View file @
0f3085c8
...
...
@@ -664,9 +664,9 @@ DWORD WINAPI GetIpStatistics(PMIB_IPSTATS stats)
int
mib
[]
=
{
CTL_NET
,
PF_INET
,
IPPROTO_IP
,
IPCTL_STATS
};
#define MIB_LEN (sizeof(mib) / sizeof(mib[0]))
int
ip_ttl
,
ip_forwarding
;
#if
HAVE_STRUCT_IPSTAT_IPS_TOTAL
#if
defined(HAVE_STRUCT_IPSTAT_IPS_TOTAL)
struct
ipstat
ip_stat
;
#elif
HAVE_STRUCT_IP_STATS_IPS_TOTAL
#elif
defined(HAVE_STRUCT_IP_STATS_IPS_TOTAL)
struct
ip_stats
ip_stat
;
#endif
size_t
needed
;
...
...
@@ -812,7 +812,7 @@ DWORD WINAPI GetTcpStatistics(PMIB_TCPSTATS stats)
}
if
(
kc
)
kstat_close
(
kc
);
}
#elif defined(HAVE_SYS_SYSCTL_H) && defined(TCPCTL_STATS) && (
HAVE_STRUCT_TCPSTAT_TCPS_CONNATTEMPT || HAVE_STRUCT_TCP_STATS_TCPS_CONNATTEMPT
)
#elif defined(HAVE_SYS_SYSCTL_H) && defined(TCPCTL_STATS) && (
defined(HAVE_STRUCT_TCPSTAT_TCPS_CONNATTEMPT) || defined(HAVE_STRUCT_TCP_STATS_TCPS_CONNATTEMPT)
)
{
#ifndef TCPTV_MIN
/* got removed in Mac OS X for some reason */
#define TCPTV_MIN 2
...
...
@@ -821,9 +821,9 @@ DWORD WINAPI GetTcpStatistics(PMIB_TCPSTATS stats)
int
mib
[]
=
{
CTL_NET
,
PF_INET
,
IPPROTO_TCP
,
TCPCTL_STATS
};
#define MIB_LEN (sizeof(mib) / sizeof(mib[0]))
#define hz 1000
#if
HAVE_STRUCT_TCPSTAT_TCPS_CONNATTEMPT
#if
defined(HAVE_STRUCT_TCPSTAT_TCPS_CONNATTEMPT)
struct
tcpstat
tcp_stat
;
#elif
HAVE_STRUCT_TCP_STATS_TCPS_CONNATTEMPT
#elif
defined(HAVE_STRUCT_TCP_STATS_TCPS_CONNATTEMPT)
struct
tcp_stats
tcp_stat
;
#endif
size_t
needed
=
sizeof
(
tcp_stat
);
...
...
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