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
61cdff3c
Commit
61cdff3c
authored
Jun 17, 2020
by
Paul Gofman
Committed by
Alexandre Julliard
Jun 18, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netio.sys: Implement wsk_bind() function.
Signed-off-by:
Paul Gofman
<
pgofman@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c342ef3c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
2 deletions
+16
-2
netio.c
dlls/netio.sys/netio.c
+16
-2
No files found.
dlls/netio.sys/netio.c
View file @
61cdff3c
...
...
@@ -135,10 +135,24 @@ static NTSTATUS WINAPI wsk_close_socket(WSK_SOCKET *socket, IRP *irp)
static
NTSTATUS
WINAPI
wsk_bind
(
WSK_SOCKET
*
socket
,
SOCKADDR
*
local_address
,
ULONG
flags
,
IRP
*
irp
)
{
FIXME
(
"socket %p, local_address %p, flags %#x, irp %p stub.
\n
"
,
struct
wsk_socket_internal
*
s
=
wsk_socket_internal_from_wsk_socket
(
socket
);
NTSTATUS
status
;
TRACE
(
"socket %p, local_address %p, flags %#x, irp %p.
\n
"
,
socket
,
local_address
,
flags
,
irp
);
return
STATUS_NOT_IMPLEMENTED
;
if
(
!
irp
)
return
STATUS_INVALID_PARAMETER
;
if
(
bind
(
s
->
s
,
local_address
,
sizeof
(
*
local_address
)))
status
=
sock_error_to_ntstatus
(
WSAGetLastError
());
else
status
=
STATUS_SUCCESS
;
TRACE
(
"status %#x.
\n
"
,
status
);
irp
->
IoStatus
.
Information
=
0
;
dispatch_irp
(
irp
,
status
);
return
STATUS_PENDING
;
}
static
NTSTATUS
WINAPI
wsk_accept
(
WSK_SOCKET
*
listen_socket
,
ULONG
flags
,
void
*
accept_socket_context
,
...
...
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