Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
797535b6
Commit
797535b6
authored
Sep 12, 2020
by
Sven Strickroth
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WinHTTP: Try to use TLS1.3
Signed-off-by: Sven Strickroth <email@cs-ware.de>
parent
1e987525
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
5 deletions
+16
-5
src/transports/winhttp.c
+16
-5
No files found.
src/transports/winhttp.c
View file @
797535b6
...
...
@@ -49,6 +49,10 @@
# define WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_2 0x00000800
#endif
#ifndef WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_3
# define WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_3 0x00002000
#endif
#ifndef HTTP_STATUS_PERMANENT_REDIRECT
# define HTTP_STATUS_PERMANENT_REDIRECT 308
#endif
...
...
@@ -743,7 +747,8 @@ static int winhttp_connect(
DWORD
protocols
=
WINHTTP_FLAG_SECURE_PROTOCOL_TLS1
|
WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_1
|
WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_2
;
WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_2
|
WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_3
;
t
->
session
=
NULL
;
t
->
connection
=
NULL
;
...
...
@@ -788,14 +793,20 @@ static int winhttp_connect(
}
/*
* Do a best-effort attempt to enable TLS 1.2 but allow this to
* fail; if TLS 1.2 support is not available for some reason,
* Do a best-effort attempt to enable TLS 1.
3 and 1.
2 but allow this to
* fail; if TLS 1.2
or 1.3
support is not available for some reason,
* ignore the failure (it will keep the default protocols).
*/
WinHttpSetOption
(
t
->
session
,
if
(
WinHttpSetOption
(
t
->
session
,
WINHTTP_OPTION_SECURE_PROTOCOLS
,
&
protocols
,
sizeof
(
protocols
));
sizeof
(
protocols
))
==
FALSE
)
{
protocols
&=
~
WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_3
;
WinHttpSetOption
(
t
->
session
,
WINHTTP_OPTION_SECURE_PROTOCOLS
,
&
protocols
,
sizeof
(
protocols
));
}
if
(
!
WinHttpSetTimeouts
(
t
->
session
,
default_timeout
,
default_connect_timeout
,
default_timeout
,
default_timeout
))
{
git_error_set
(
GIT_ERROR_OS
,
"failed to set timeouts for WinHTTP"
);
...
...
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