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
b3e7f710
Commit
b3e7f710
authored
Sep 27, 2012
by
Qian Hong
Committed by
Alexandre Julliard
Sep 28, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iphlpapi: Set DhcpEnabled to TRUE for all interfaces.
parent
f49d360f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
iphlpapi_main.c
dlls/iphlpapi/iphlpapi_main.c
+4
-6
No files found.
dlls/iphlpapi/iphlpapi_main.c
View file @
b3e7f710
...
...
@@ -598,6 +598,8 @@ DWORD WINAPI GetAdaptersInfo(PIP_ADAPTER_INFO pAdapterInfo, PULONG pOutBufLen)
ptr
->
Next
=
&
pAdapterInfo
[
ndx
+
1
];
else
ptr
->
Next
=
NULL
;
ptr
->
DhcpEnabled
=
TRUE
;
}
ret
=
NO_ERROR
;
}
...
...
@@ -2008,9 +2010,7 @@ DWORD WINAPI GetUniDirectionalAdapterInfo(PIP_UNIDIRECTIONAL_ADAPTER_ADDRESS pIP
*/
DWORD
WINAPI
IpReleaseAddress
(
PIP_ADAPTER_INDEX_MAP
AdapterInfo
)
{
TRACE
(
"AdapterInfo %p
\n
"
,
AdapterInfo
);
/* not a stub, never going to support this (and I never mark an adapter as
DHCP enabled, see GetAdaptersInfo, so this should never get called) */
FIXME
(
"Stub AdapterInfo %p
\n
"
,
AdapterInfo
);
return
ERROR_NOT_SUPPORTED
;
}
...
...
@@ -2036,9 +2036,7 @@ DWORD WINAPI IpReleaseAddress(PIP_ADAPTER_INDEX_MAP AdapterInfo)
*/
DWORD
WINAPI
IpRenewAddress
(
PIP_ADAPTER_INDEX_MAP
AdapterInfo
)
{
TRACE
(
"AdapterInfo %p
\n
"
,
AdapterInfo
);
/* not a stub, never going to support this (and I never mark an adapter as
DHCP enabled, see GetAdaptersInfo, so this should never get called) */
FIXME
(
"Stub AdapterInfo %p
\n
"
,
AdapterInfo
);
return
ERROR_NOT_SUPPORTED
;
}
...
...
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