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
90ec92df
Commit
90ec92df
authored
May 25, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
May 25, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Set SECURITY_FLAG_SECURRE in NETCON_secure_connect.
parent
59a0ab54
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
http.c
dlls/wininet/http.c
+0
-2
netconnection.c
dlls/wininet/netconnection.c
+2
-0
No files found.
dlls/wininet/http.c
View file @
90ec92df
...
...
@@ -1999,8 +1999,6 @@ static DWORD HTTPREQ_QueryOption(object_header_t *hdr, DWORD option, void *buffe
*
size
=
sizeof
(
DWORD
);
flags
=
req
->
netconn
?
req
->
netconn
->
security_flags
:
req
->
security_flags
|
req
->
server
->
security_flags
;
if
(
req
->
hdr
.
dwFlags
&
INTERNET_FLAG_SECURE
)
flags
|=
SECURITY_FLAG_SECURE
;
if
(
req
->
netconn
)
{
int
bits
=
NETCON_GetCipherStrength
(
req
->
netconn
);
if
(
bits
>=
128
)
...
...
dlls/wininet/netconnection.c
View file @
90ec92df
...
...
@@ -729,6 +729,8 @@ DWORD NETCON_secure_connect(netconn_t *connection)
}
connection
->
ssl_s
=
ssl_s
;
connection
->
security_flags
|=
SECURITY_FLAG_SECURE
;
connection
->
server
->
security_flags
=
connection
->
security_flags
;
return
ERROR_SUCCESS
;
...
...
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