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
42e0155f
Commit
42e0155f
authored
Jul 01, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Jul 02, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Move the setsockopt(IP_DONTFRAGMENT) implementation to ntdll.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f38bb98a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
2 deletions
+24
-2
socket.c
dlls/ntdll/unix/socket.c
+19
-0
socket.c
dlls/ws2_32/socket.c
+4
-2
afd.h
include/wine/afd.h
+1
-0
No files found.
dlls/ntdll/unix/socket.c
View file @
42e0155f
...
...
@@ -1717,6 +1717,25 @@ NTSTATUS sock_ioctl( HANDLE handle, HANDLE event, PIO_APC_ROUTINE apc, void *apc
return
STATUS_SUCCESS
;
}
case
IOCTL_AFD_WINE_SET_IP_DONTFRAGMENT
:
#ifdef IP_DONTFRAG
return
do_setsockopt
(
handle
,
io
,
IPPROTO_IP
,
IP_DONTFRAG
,
in_buffer
,
in_size
);
#elif defined(IP_MTU_DISCOVER) && defined(IP_PMTUDISC_DO) && defined(IP_PMTUDISC_DONT)
{
int
value
=
*
(
DWORD
*
)
in_buffer
?
IP_PMTUDISC_DO
:
IP_PMTUDISC_DONT
;
return
do_setsockopt
(
handle
,
io
,
IPPROTO_IP
,
IP_MTU_DISCOVER
,
&
value
,
sizeof
(
value
)
);
}
#else
{
static
int
once
;
if
(
!
once
++
)
FIXME
(
"IP_DONTFRAGMENT is not supported on this platform
\n
"
);
return
STATUS_SUCCESS
;
/* fake success */
}
#endif
default:
{
if
((
code
>>
16
)
==
FILE_DEVICE_NETWORK
)
...
...
dlls/ws2_32/socket.c
View file @
42e0155f
...
...
@@ -3634,6 +3634,9 @@ int WINAPI WS_setsockopt(SOCKET s, int level, int optname,
case
WS_IP_BLOCK_SOURCE
:
return
server_setsockopt
(
s
,
IOCTL_AFD_WINE_SET_IP_BLOCK_SOURCE
,
optval
,
optlen
);
case
WS_IP_DONTFRAGMENT
:
return
server_setsockopt
(
s
,
IOCTL_AFD_WINE_SET_IP_DONTFRAGMENT
,
optval
,
optlen
);
case
WS_IP_DROP_SOURCE_MEMBERSHIP
:
case
WS_IP_UNBLOCK_SOURCE
:
{
...
...
@@ -3666,8 +3669,7 @@ int WINAPI WS_setsockopt(SOCKET s, int level, int optname,
#endif
convert_sockopt
(
&
level
,
&
optname
);
break
;
case
WS_IP_DONTFRAGMENT
:
return
set_dont_fragment
(
s
,
IPPROTO_IP
,
*
(
BOOL
*
)
optval
)
?
0
:
SOCKET_ERROR
;
default:
FIXME
(
"Unknown IPPROTO_IP optname 0x%08x
\n
"
,
optname
);
return
SOCKET_ERROR
;
...
...
include/wine/afd.h
View file @
42e0155f
...
...
@@ -185,6 +185,7 @@ struct afd_get_events_params
#define IOCTL_AFD_WINE_SET_IP_ADD_SOURCE_MEMBERSHIP WINE_AFD_IOC(240)
#define IOCTL_AFD_WINE_SET_IP_BLOCK_SOURCE WINE_AFD_IOC(241)
#define IOCTL_AFD_WINE_GET_IP_DONTFRAGMENT WINE_AFD_IOC(242)
#define IOCTL_AFD_WINE_SET_IP_DONTFRAGMENT WINE_AFD_IOC(243)
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