Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
87360b4f
Commit
87360b4f
authored
Jun 18, 2014
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nghttpx: Require TLSv.12 for h2
parent
8e0fcd39
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
src/shrpx_ssl.cc
src/shrpx_ssl.cc
+1
-2
No files found.
src/shrpx_ssl.cc
View file @
87360b4f
...
...
@@ -940,11 +940,10 @@ bool check_http2_requirement(SSL *ssl)
auto
tls_ver
=
SSL_version
(
ssl
);
switch
(
tls_ver
)
{
case
TLS1_1_VERSION
:
case
TLS1_2_VERSION
:
break
;
default:
LOG
(
INFO
)
<<
"TLSv1.2
or TLSv1.1
was not negotiated. "
LOG
(
INFO
)
<<
"TLSv1.2 was not negotiated. "
<<
"HTTP/2 must not be negotiated."
;
return
false
;
}
...
...
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