Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
a91d6919
Commit
a91d6919
authored
Jan 25, 2007
by
Mark Adams
Committed by
Alexandre Julliard
Jan 26, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iphlpapi: Clarify interface counting.
parent
267fcdd0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
ifenum.c
dlls/iphlpapi/ifenum.c
+4
-3
No files found.
dlls/iphlpapi/ifenum.c
View file @
a91d6919
...
...
@@ -673,14 +673,16 @@ static DWORD enumIPAddresses(PDWORD pcAddresses, struct ifconf *ifc)
int
ioctlRet
=
0
;
DWORD
guessedNumAddresses
=
0
,
numAddresses
=
0
;
caddr_t
ifPtr
;
int
lastlen
;
ret
=
NO_ERROR
;
ifc
->
ifc_len
=
0
;
ifc
->
ifc_buf
=
NULL
;
/* there is no way to know the interface count beforehand,
so we need to loop again and again upping our max each time
until returned
< max
*/
until returned
is constant across 2 calls
*/
do
{
lastlen
=
ifc
->
ifc_len
;
HeapFree
(
GetProcessHeap
(),
0
,
ifc
->
ifc_buf
);
if
(
guessedNumAddresses
==
0
)
guessedNumAddresses
=
INITIAL_INTERFACES_ASSUMED
;
...
...
@@ -689,8 +691,7 @@ static DWORD enumIPAddresses(PDWORD pcAddresses, struct ifconf *ifc)
ifc
->
ifc_len
=
sizeof
(
struct
ifreq
)
*
guessedNumAddresses
;
ifc
->
ifc_buf
=
HeapAlloc
(
GetProcessHeap
(),
0
,
ifc
->
ifc_len
);
ioctlRet
=
ioctl
(
fd
,
SIOCGIFCONF
,
ifc
);
}
while
(
ioctlRet
==
0
&&
ifc
->
ifc_len
>
(
sizeof
(
struct
ifreq
)
*
(
guessedNumAddresses
-
2
)));
}
while
((
ioctlRet
==
0
)
&&
(
ifc
->
ifc_len
!=
lastlen
));
if
(
ioctlRet
==
0
)
{
ifPtr
=
ifc
->
ifc_buf
;
...
...
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