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
9715bd25
Commit
9715bd25
authored
Jul 27, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Jul 27, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Move the setsockopt(IP_UNBLOCK_SOURCE) implementation to ntdll.
Signed-off-by:
Zebediah Figura
<
zfigura@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
bcf777fd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
12 deletions
+5
-12
socket.c
dlls/ntdll/unix/socket.c
+3
-0
socket.c
dlls/ws2_32/socket.c
+1
-12
afd.h
include/wine/afd.h
+1
-0
No files found.
dlls/ntdll/unix/socket.c
View file @
9715bd25
...
...
@@ -1787,6 +1787,9 @@ NTSTATUS sock_ioctl( HANDLE handle, HANDLE event, PIO_APC_ROUTINE apc, void *apc
case
IOCTL_AFD_WINE_SET_IP_TTL
:
return
do_setsockopt
(
handle
,
io
,
IPPROTO_IP
,
IP_TTL
,
in_buffer
,
in_size
);
case
IOCTL_AFD_WINE_SET_IP_UNBLOCK_SOURCE
:
return
do_setsockopt
(
handle
,
io
,
IPPROTO_IP
,
IP_UNBLOCK_SOURCE
,
in_buffer
,
in_size
);
default:
{
if
((
code
>>
16
)
==
FILE_DEVICE_NETWORK
)
...
...
dlls/ws2_32/socket.c
View file @
9715bd25
...
...
@@ -3504,7 +3504,6 @@ int WINAPI WS_setsockopt(SOCKET s, int level, int optname,
{
int
fd
;
int
woptval
;
struct
ip_mreq_source
mreq_source
;
TRACE
(
"(socket %04lx, %s, optval %s, optlen %d)
\n
"
,
s
,
debugstr_sockopt
(
level
,
optname
),
debugstr_optval
(
optval
,
optlen
),
...
...
@@ -3715,18 +3714,8 @@ int WINAPI WS_setsockopt(SOCKET s, int level, int optname,
return
server_setsockopt
(
s
,
IOCTL_AFD_WINE_SET_IP_TTL
,
optval
,
optlen
);
case
WS_IP_UNBLOCK_SOURCE
:
{
WS_IP_MREQ_SOURCE
*
val
=
(
void
*
)
optval
;
mreq_source
.
imr_interface
.
s_addr
=
val
->
imr_interface
.
S_un
.
S_addr
;
mreq_source
.
imr_multiaddr
.
s_addr
=
val
->
imr_multiaddr
.
S_un
.
S_addr
;
mreq_source
.
imr_sourceaddr
.
s_addr
=
val
->
imr_sourceaddr
.
S_un
.
S_addr
;
optval
=
(
char
*
)
&
mreq_source
;
optlen
=
sizeof
(
mreq_source
);
return
server_setsockopt
(
s
,
IOCTL_AFD_WINE_SET_IP_UNBLOCK_SOURCE
,
optval
,
optlen
);
convert_sockopt
(
&
level
,
&
optname
);
break
;
}
#ifdef IP_UNICAST_IF
case
WS_IP_UNICAST_IF
:
#endif
...
...
include/wine/afd.h
View file @
9715bd25
...
...
@@ -204,6 +204,7 @@ struct afd_get_events_params
#define IOCTL_AFD_WINE_SET_IP_TOS WINE_AFD_IOC(259)
#define IOCTL_AFD_WINE_GET_IP_TTL WINE_AFD_IOC(260)
#define IOCTL_AFD_WINE_SET_IP_TTL WINE_AFD_IOC(261)
#define IOCTL_AFD_WINE_SET_IP_UNBLOCK_SOURCE WINE_AFD_IOC(262)
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