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
b1669e3a
Commit
b1669e3a
authored
Jul 30, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Aug 02, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Move the getsockopt(TCP_NODELAY) implementation to ntdll.
Signed-off-by:
Zebediah Figura
<
zfigura@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3e09e250
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
13 deletions
+10
-13
socket.c
dlls/ntdll/unix/socket.c
+3
-0
socket.c
dlls/ws2_32/socket.c
+6
-13
afd.h
include/wine/afd.h
+1
-0
No files found.
dlls/ntdll/unix/socket.c
View file @
b1669e3a
...
...
@@ -1999,6 +1999,9 @@ NTSTATUS sock_ioctl( HANDLE handle, HANDLE event, PIO_APC_ROUTINE apc, void *apc
}
#endif
case
IOCTL_AFD_WINE_GET_TCP_NODELAY
:
return
do_getsockopt
(
handle
,
io
,
IPPROTO_TCP
,
TCP_NODELAY
,
out_buffer
,
out_size
);
default:
{
if
((
code
>>
16
)
==
FILE_DEVICE_NETWORK
)
...
...
dlls/ws2_32/socket.c
View file @
b1669e3a
...
...
@@ -1880,7 +1880,6 @@ static int server_getsockopt( SOCKET s, ULONG code, char *optval, int *optlen )
INT
WINAPI
WS_getsockopt
(
SOCKET
s
,
INT
level
,
INT
optname
,
char
*
optval
,
INT
*
optlen
)
{
int
fd
;
INT
ret
=
0
;
TRACE
(
"(socket %04lx, %s, optval %s, optlen %p (%d))
\n
"
,
s
,
...
...
@@ -2186,19 +2185,13 @@ INT WINAPI WS_getsockopt(SOCKET s, INT level,
switch
(
optname
)
{
case
WS_TCP_NODELAY
:
if
(
(
fd
=
get_sock_fd
(
s
,
0
,
NULL
))
==
-
1
)
return
SOCKET_ERROR
;
convert_sockopt
(
&
level
,
&
optname
);
if
(
getsockopt
(
fd
,
level
,
optname
,
optval
,
(
socklen_t
*
)
optlen
)
!=
0
)
{
SetLastError
(
wsaErrno
());
ret
=
SOCKET_ERROR
;
}
release_sock_fd
(
s
,
fd
);
return
ret
;
return
server_getsockopt
(
s
,
IOCTL_AFD_WINE_GET_TCP_NODELAY
,
optval
,
optlen
);
default:
FIXME
(
"unrecognized TCP option %#x
\n
"
,
optname
);
SetLastError
(
WSAENOPROTOOPT
);
return
-
1
;
}
FIXME
(
"Unknown IPPROTO_TCP optname 0x%08x
\n
"
,
optname
);
return
SOCKET_ERROR
;
case
WS_IPPROTO_IP
:
switch
(
optname
)
...
...
include/wine/afd.h
View file @
b1669e3a
...
...
@@ -226,6 +226,7 @@ struct afd_get_events_params
#define IOCTL_AFD_WINE_GET_IPX_PTYPE WINE_AFD_IOC(281)
#define IOCTL_AFD_WINE_SET_IPX_PTYPE WINE_AFD_IOC(282)
#define IOCTL_AFD_WINE_GET_IRLMP_ENUMDEVICES WINE_AFD_IOC(283)
#define IOCTL_AFD_WINE_GET_TCP_NODELAY WINE_AFD_IOC(284)
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