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
96b6bf61
Commit
96b6bf61
authored
Jul 28, 2023
by
Paul Gofman
Committed by
Alexandre Julliard
Jul 31, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp: Set FILE_SKIP_COMPLETION_PORT_ON_SUCCESS on sockets.
parent
abdca2f7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
net.c
dlls/winhttp/net.c
+3
-0
No files found.
dlls/winhttp/net.c
View file @
96b6bf61
...
...
@@ -25,6 +25,7 @@
#include "ws2tcpip.h"
#include "winhttp.h"
#include "schannel.h"
#include "winternl.h"
#include "wine/debug.h"
#include "winhttp_private.h"
...
...
@@ -223,6 +224,8 @@ DWORD netconn_create( struct hostdata *host, const struct sockaddr_storage *sock
free
(
conn
);
return
ret
;
}
if
(
!
SetFileCompletionNotificationModes
(
(
HANDLE
)(
UINT_PTR
)
conn
->
socket
,
FILE_SKIP_COMPLETION_PORT_ON_SUCCESS
))
ERR
(
"SetFileCompletionNotificationModes failed.
\n
"
);
switch
(
conn
->
sockaddr
.
ss_family
)
{
...
...
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