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
27609da3
Commit
27609da3
authored
Jun 02, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Jun 03, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Introduce IOCTL_AFD_WINE_SIOCATMARK.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
800a42b9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
0 deletions
+40
-0
socket.c
dlls/ntdll/unix/socket.c
+39
-0
afd.h
include/wine/afd.h
+1
-0
No files found.
dlls/ntdll/unix/socket.c
View file @
27609da3
...
...
@@ -1316,6 +1316,45 @@ NTSTATUS sock_ioctl( HANDLE handle, HANDLE event, PIO_APC_ROUTINE apc, void *apc
break
;
}
case
IOCTL_AFD_WINE_SIOCATMARK
:
{
int
value
,
ret
;
socklen_t
len
=
sizeof
(
value
);
if
((
status
=
server_get_unix_fd
(
handle
,
0
,
&
fd
,
&
needs_close
,
NULL
,
NULL
)))
return
status
;
if
(
out_size
<
sizeof
(
int
))
{
status
=
STATUS_BUFFER_TOO_SMALL
;
break
;
}
if
(
getsockopt
(
fd
,
SOL_SOCKET
,
SO_OOBINLINE
,
&
value
,
&
len
)
<
0
)
{
status
=
sock_errno_to_status
(
errno
);
break
;
}
if
(
value
)
{
*
(
int
*
)
out_buffer
=
TRUE
;
}
else
{
if
((
ret
=
ioctl
(
fd
,
SIOCATMARK
,
&
value
))
<
0
)
{
status
=
sock_errno_to_status
(
errno
);
break
;
}
/* windows is reversed with respect to unix */
*
(
int
*
)
out_buffer
=
!
value
;
}
status
=
STATUS_SUCCESS
;
complete_async
(
handle
,
event
,
apc
,
apc_user
,
io
,
status
,
0
);
break
;
}
default:
{
if
((
code
>>
16
)
==
FILE_DEVICE_NETWORK
)
...
...
include/wine/afd.h
View file @
27609da3
...
...
@@ -99,6 +99,7 @@ struct afd_poll_params
#define IOCTL_AFD_WINE_FIONBIO CTL_CODE(FILE_DEVICE_NETWORK, 209, METHOD_BUFFERED, FILE_ANY_ACCESS)
#define IOCTL_AFD_WINE_COMPLETE_ASYNC CTL_CODE(FILE_DEVICE_NETWORK, 210, METHOD_BUFFERED, FILE_ANY_ACCESS)
#define IOCTL_AFD_WINE_FIONREAD CTL_CODE(FILE_DEVICE_NETWORK, 211, METHOD_BUFFERED, FILE_ANY_ACCESS)
#define IOCTL_AFD_WINE_SIOCATMARK CTL_CODE(FILE_DEVICE_NETWORK, 212, 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