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
a6b880a0
Commit
a6b880a0
authored
Jul 30, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Jul 30, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Move the getsockopt(IPV6_UNICAST_IF) implementation to ntdll.
Signed-off-by:
Zebediah Figura
<
zfigura@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
717766e5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
3 deletions
+9
-3
socket.c
dlls/ntdll/unix/socket.c
+5
-0
socket.c
dlls/ws2_32/socket.c
+3
-3
afd.h
include/wine/afd.h
+1
-0
No files found.
dlls/ntdll/unix/socket.c
View file @
a6b880a0
...
...
@@ -1888,6 +1888,11 @@ NTSTATUS sock_ioctl( HANDLE handle, HANDLE event, PIO_APC_ROUTINE apc, void *apc
case
IOCTL_AFD_WINE_SET_IPV6_UNICAST_HOPS
:
return
do_setsockopt
(
handle
,
io
,
IPPROTO_IPV6
,
IPV6_UNICAST_HOPS
,
in_buffer
,
in_size
);
#ifdef IPV6_UNICAST_IF
case
IOCTL_AFD_WINE_GET_IPV6_UNICAST_IF
:
return
do_getsockopt
(
handle
,
io
,
IPPROTO_IPV6
,
IPV6_UNICAST_IF
,
out_buffer
,
out_size
);
#endif
default:
{
if
((
code
>>
16
)
==
FILE_DEVICE_NETWORK
)
...
...
dlls/ws2_32/socket.c
View file @
a6b880a0
...
...
@@ -2424,10 +2424,10 @@ INT WINAPI WS_getsockopt(SOCKET s, INT level,
case
WS_IPV6_UNICAST_HOPS
:
return
server_getsockopt
(
s
,
IOCTL_AFD_WINE_GET_IPV6_UNICAST_HOPS
,
optval
,
optlen
);
case
WS_IPV6_V6ONLY
:
#ifdef IPV6_UNICAST_IF
case
WS_IPV6_UNICAST_IF
:
#endif
return
server_getsockopt
(
s
,
IOCTL_AFD_WINE_GET_IPV6_UNICAST_IF
,
optval
,
optlen
);
case
WS_IPV6_V6ONLY
:
if
(
(
fd
=
get_sock_fd
(
s
,
0
,
NULL
))
==
-
1
)
return
SOCKET_ERROR
;
convert_sockopt
(
&
level
,
&
optname
);
...
...
include/wine/afd.h
View file @
a6b880a0
...
...
@@ -219,6 +219,7 @@ struct afd_get_events_params
#define IOCTL_AFD_WINE_SET_IPV6_MULTICAST_LOOP WINE_AFD_IOC(274)
#define IOCTL_AFD_WINE_GET_IPV6_UNICAST_HOPS WINE_AFD_IOC(275)
#define IOCTL_AFD_WINE_SET_IPV6_UNICAST_HOPS WINE_AFD_IOC(276)
#define IOCTL_AFD_WINE_GET_IPV6_UNICAST_IF WINE_AFD_IOC(277)
struct
afd_create_params
{
...
...
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