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
a331f1e6
Commit
a331f1e6
authored
Jan 18, 2023
by
Santino Mazza
Committed by
Alexandre Julliard
Jan 19, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iphlpapi/tests: Test for Ipv4Enabled and Ipv6Enabled flags.
parent
929fdbbf
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
iphlpapi.c
dlls/iphlpapi/tests/iphlpapi.c
+5
-0
No files found.
dlls/iphlpapi/tests/iphlpapi.c
View file @
a331f1e6
...
...
@@ -1818,6 +1818,11 @@ static void test_GetAdaptersAddresses(void)
if
(
ua
->
Flags
&
IP_ADAPTER_ADDRESS_DNS_ELIGIBLE
)
dns_eligible_found
=
TRUE
;
if
(
ua
->
Address
.
lpSockaddr
->
sa_family
==
AF_INET
)
todo_wine
ok
(
aa
->
Ipv4Enabled
==
TRUE
,
"expected Ipv4Enabled flag to be set in interface %ls
\n
"
,
aa
->
FriendlyName
);
else
if
(
ua
->
Address
.
lpSockaddr
->
sa_family
==
AF_INET6
)
todo_wine
ok
(
aa
->
Ipv6Enabled
==
TRUE
,
"expected Ipv6Enabled flag to be set in interface %ls
\n
"
,
aa
->
FriendlyName
);
ua
=
ua
->
Next
;
}
for
(
i
=
0
,
temp
[
0
]
=
'\0'
;
i
<
ARRAY_SIZE
(
aa
->
ZoneIndices
);
i
++
)
...
...
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