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
38a6ac7a
Commit
38a6ac7a
authored
Jul 09, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Jul 10, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Move the setsockopt(IP_PKTINFO) implementation to ntdll.
Signed-off-by:
Zebediah Figura
<
zfigura@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
bbfe3507
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
3 deletions
+10
-3
socket.c
dlls/ntdll/unix/socket.c
+6
-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 @
38a6ac7a
...
...
@@ -1773,9 +1773,15 @@ NTSTATUS sock_ioctl( HANDLE handle, HANDLE event, PIO_APC_ROUTINE apc, void *apc
#ifdef IP_PKTINFO
case
IOCTL_AFD_WINE_GET_IP_PKTINFO
:
return
do_getsockopt
(
handle
,
io
,
IPPROTO_IP
,
IP_PKTINFO
,
out_buffer
,
out_size
);
case
IOCTL_AFD_WINE_SET_IP_PKTINFO
:
return
do_setsockopt
(
handle
,
io
,
IPPROTO_IP
,
IP_PKTINFO
,
in_buffer
,
in_size
);
#elif defined(IP_RECVDSTADDR)
case
IOCTL_AFD_WINE_GET_IP_PKTINFO
:
return
do_getsockopt
(
handle
,
io
,
IPPROTO_IP
,
IP_RECVDSTADDR
,
out_buffer
,
out_size
);
case
IOCTL_AFD_WINE_SET_IP_PKTINFO
:
return
do_setsockopt
(
handle
,
io
,
IPPROTO_IP
,
IP_RECVDSTADDR
,
in_buffer
,
in_size
);
#endif
default:
...
...
dlls/ws2_32/socket.c
View file @
38a6ac7a
...
...
@@ -3666,6 +3666,9 @@ int WINAPI WS_setsockopt(SOCKET s, int level, int optname,
case
WS_IP_OPTIONS
:
return
server_setsockopt
(
s
,
IOCTL_AFD_WINE_SET_IP_OPTIONS
,
optval
,
optlen
);
case
WS_IP_PKTINFO
:
return
server_setsockopt
(
s
,
IOCTL_AFD_WINE_SET_IP_PKTINFO
,
optval
,
optlen
);
case
WS_IP_UNBLOCK_SOURCE
:
{
WS_IP_MREQ_SOURCE
*
val
=
(
void
*
)
optval
;
...
...
@@ -3679,9 +3682,6 @@ int WINAPI WS_setsockopt(SOCKET s, int level, int optname,
convert_sockopt
(
&
level
,
&
optname
);
break
;
}
#if defined(IP_PKTINFO) || defined(IP_RECVDSTADDR)
case
WS_IP_PKTINFO
:
#endif
case
WS_IP_TOS
:
case
WS_IP_TTL
:
#ifdef IP_UNICAST_IF
...
...
include/wine/afd.h
View file @
38a6ac7a
...
...
@@ -199,6 +199,7 @@ struct afd_get_events_params
#define IOCTL_AFD_WINE_GET_IP_OPTIONS WINE_AFD_IOC(254)
#define IOCTL_AFD_WINE_SET_IP_OPTIONS WINE_AFD_IOC(255)
#define IOCTL_AFD_WINE_GET_IP_PKTINFO WINE_AFD_IOC(256)
#define IOCTL_AFD_WINE_SET_IP_PKTINFO WINE_AFD_IOC(257)
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