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
25b58d5e
Commit
25b58d5e
authored
Jun 12, 2014
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nghttpx: Code cleanup
parent
dd006f8a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
src/shrpx_client_handler.cc
src/shrpx_client_handler.cc
+10
-10
No files found.
src/shrpx_client_handler.cc
View file @
25b58d5e
...
...
@@ -540,6 +540,16 @@ std::string ClientHandler::get_upstream_scheme() const
}
}
void
ClientHandler
::
set_tls_handshake
(
bool
f
)
{
tls_handshake_
=
f
;
}
bool
ClientHandler
::
get_tls_handshake
()
const
{
return
tls_handshake_
;
}
namespace
{
void
shutdown_cb
(
evutil_socket_t
fd
,
short
what
,
void
*
arg
)
{
...
...
@@ -553,16 +563,6 @@ void shutdown_cb(evutil_socket_t fd, short what, void *arg)
}
}
// namespace
void
ClientHandler
::
set_tls_handshake
(
bool
f
)
{
tls_handshake_
=
f
;
}
bool
ClientHandler
::
get_tls_handshake
()
const
{
return
tls_handshake_
;
}
void
ClientHandler
::
set_tls_renegotiation
(
bool
f
)
{
if
(
tls_renegotiation_
==
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