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
afa71f9a
Commit
afa71f9a
authored
Jun 24, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Jun 25, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Move the getsockopt(SO_OOBINLINE) implementation to ntdll.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2ba41754
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
1 deletion
+7
-1
socket.c
dlls/ntdll/unix/socket.c
+3
-0
socket.c
dlls/ws2_32/socket.c
+3
-1
afd.h
include/wine/afd.h
+1
-0
No files found.
dlls/ntdll/unix/socket.c
View file @
afa71f9a
...
...
@@ -1646,6 +1646,9 @@ NTSTATUS sock_ioctl( HANDLE handle, HANDLE event, PIO_APC_ROUTINE apc, void *apc
return
do_setsockopt
(
handle
,
io
,
SOL_SOCKET
,
SO_LINGER
,
&
unix_linger
,
sizeof
(
unix_linger
)
);
}
case
IOCTL_AFD_WINE_GET_SO_OOBINLINE
:
return
do_getsockopt
(
handle
,
io
,
SOL_SOCKET
,
SO_OOBINLINE
,
out_buffer
,
out_size
);
default:
{
if
((
code
>>
16
)
==
FILE_DEVICE_NETWORK
)
...
...
dlls/ws2_32/socket.c
View file @
afa71f9a
...
...
@@ -2090,7 +2090,6 @@ INT WINAPI WS_getsockopt(SOCKET s, INT level,
/* Handle common cases. The special cases are below, sorted
* alphabetically */
case
WS_SO_OOBINLINE
:
case
WS_SO_RCVBUF
:
case
WS_SO_REUSEADDR
:
case
WS_SO_SNDBUF
:
...
...
@@ -2252,6 +2251,9 @@ INT WINAPI WS_getsockopt(SOCKET s, INT level,
*
optlen
=
sizeof
(
int
);
return
0
;
case
WS_SO_OOBINLINE
:
return
server_getsockopt
(
s
,
IOCTL_AFD_WINE_GET_SO_OOBINLINE
,
optval
,
optlen
);
/* SO_OPENTYPE does not require a valid socket handle. */
case
WS_SO_OPENTYPE
:
if
(
!
optlen
||
*
optlen
<
sizeof
(
int
)
||
!
optval
)
...
...
include/wine/afd.h
View file @
afa71f9a
...
...
@@ -167,6 +167,7 @@ struct afd_get_events_params
#define IOCTL_AFD_WINE_SET_SO_KEEPALIVE CTL_CODE(FILE_DEVICE_NETWORK, 224, METHOD_BUFFERED, FILE_ANY_ACCESS)
#define IOCTL_AFD_WINE_GET_SO_LINGER CTL_CODE(FILE_DEVICE_NETWORK, 225, METHOD_BUFFERED, FILE_ANY_ACCESS)
#define IOCTL_AFD_WINE_SET_SO_LINGER CTL_CODE(FILE_DEVICE_NETWORK, 226, METHOD_BUFFERED, FILE_ANY_ACCESS)
#define IOCTL_AFD_WINE_GET_SO_OOBINLINE CTL_CODE(FILE_DEVICE_NETWORK, 227, METHOD_BUFFERED, FILE_ANY_ACCESS)
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