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
1b766caa
Commit
1b766caa
authored
Jun 06, 2022
by
Paul Gofman
Committed by
Alexandre Julliard
Jun 08, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp: Support abort in task_socket_close().
Signed-off-by:
Paul Gofman
<
pgofman@codeweavers.com
>
parent
55425e85
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
request.c
dlls/winhttp/request.c
+7
-2
No files found.
dlls/winhttp/request.c
View file @
1b766caa
...
...
@@ -4145,13 +4145,18 @@ static void task_socket_close( void *ctx, BOOL abort )
struct
socket
*
socket
=
(
struct
socket
*
)
s
->
task_hdr
.
obj
;
DWORD
ret
;
if
(
abort
)
return
;
if
(
abort
)
{
socket_close_complete
(
socket
,
ERROR_WINHTTP_OPERATION_CANCELLED
);
return
;
}
TRACE
(
"running %p
\n
"
,
ctx
);
ret
=
socket_close
(
socket
);
receive_io_complete
(
socket
);
socket_close_complete
(
socket
,
ret
);
if
(
task_needs_completion
(
&
s
->
task_hdr
))
socket_close_complete
(
socket
,
ret
);
}
DWORD
WINAPI
WinHttpWebSocketClose
(
HINTERNET
hsocket
,
USHORT
status
,
void
*
reason
,
DWORD
len
)
...
...
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