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
7c7d00a1
Commit
7c7d00a1
authored
May 17, 2010
by
Juan Lang
Committed by
Alexandre Julliard
May 18, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp: Store security flags in netconn_t.
parent
141875c8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
session.c
dlls/winhttp/session.c
+1
-1
winhttp_private.h
dlls/winhttp/winhttp_private.h
+1
-1
No files found.
dlls/winhttp/session.c
View file @
7c7d00a1
...
...
@@ -741,7 +741,7 @@ static BOOL request_set_option( object_header_t *hdr, DWORD option, LPVOID buffe
set_last_error
(
ERROR_INVALID_PARAMETER
);
return
FALSE
;
}
request
->
security_flags
=
flags
;
request
->
netconn
.
security_flags
=
flags
;
return
TRUE
;
}
case
WINHTTP_OPTION_RESOLVE_TIMEOUT
:
...
...
dlls/winhttp/winhttp_private.h
View file @
7c7d00a1
...
...
@@ -128,6 +128,7 @@ typedef struct
char
*
peek_msg
;
char
*
peek_msg_mem
;
size_t
peek_len
;
DWORD
security_flags
;
}
netconn_t
;
typedef
struct
...
...
@@ -155,7 +156,6 @@ typedef struct
DWORD
content_read
;
/* bytes read so far */
header_t
*
headers
;
DWORD
num_headers
;
DWORD
security_flags
;
}
request_t
;
typedef
struct
_task_header_t
task_header_t
;
...
...
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