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
2de3effe
Commit
2de3effe
authored
Jul 07, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Jul 08, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Move the getsockopt(IP_MULTICAST_LOOP) implementation to ntdll.
Signed-off-by:
Zebediah Figura
<
zfigura@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9ad2f988
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
0 deletions
+6
-0
socket.c
dlls/ntdll/unix/socket.c
+3
-0
socket.c
dlls/ws2_32/socket.c
+2
-0
afd.h
include/wine/afd.h
+1
-0
No files found.
dlls/ntdll/unix/socket.c
View file @
2de3effe
...
...
@@ -1756,6 +1756,9 @@ NTSTATUS sock_ioctl( HANDLE handle, HANDLE event, PIO_APC_ROUTINE apc, void *apc
case
IOCTL_AFD_WINE_SET_IP_MULTICAST_IF
:
return
do_setsockopt
(
handle
,
io
,
IPPROTO_IP
,
IP_MULTICAST_IF
,
in_buffer
,
in_size
);
case
IOCTL_AFD_WINE_GET_IP_MULTICAST_LOOP
:
return
do_getsockopt
(
handle
,
io
,
IPPROTO_IP
,
IP_MULTICAST_LOOP
,
out_buffer
,
out_size
);
default:
{
if
((
code
>>
16
)
==
FILE_DEVICE_NETWORK
)
...
...
dlls/ws2_32/socket.c
View file @
2de3effe
...
...
@@ -2443,6 +2443,8 @@ INT WINAPI WS_getsockopt(SOCKET s, INT level,
return
server_getsockopt
(
s
,
IOCTL_AFD_WINE_GET_IP_MULTICAST_IF
,
optval
,
optlen
);
case
WS_IP_MULTICAST_LOOP
:
return
server_getsockopt
(
s
,
IOCTL_AFD_WINE_GET_IP_MULTICAST_LOOP
,
optval
,
optlen
);
case
WS_IP_MULTICAST_TTL
:
case
WS_IP_OPTIONS
:
#if defined(IP_PKTINFO) || defined(IP_RECVDSTADDR)
...
...
include/wine/afd.h
View file @
2de3effe
...
...
@@ -192,6 +192,7 @@ struct afd_get_events_params
#define IOCTL_AFD_WINE_SET_IP_HDRINCL WINE_AFD_IOC(247)
#define IOCTL_AFD_WINE_GET_IP_MULTICAST_IF WINE_AFD_IOC(248)
#define IOCTL_AFD_WINE_SET_IP_MULTICAST_IF WINE_AFD_IOC(249)
#define IOCTL_AFD_WINE_GET_IP_MULTICAST_LOOP WINE_AFD_IOC(250)
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