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
feabd6f7
Commit
feabd6f7
authored
Mar 15, 2017
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nghttpx: Delete unused delete_bio_method
parent
1ea590c3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
8 deletions
+0
-8
src/shrpx_connection.cc
src/shrpx_connection.cc
+0
-4
src/shrpx_connection.h
src/shrpx_connection.h
+0
-4
No files found.
src/shrpx_connection.cc
View file @
feabd6f7
...
...
@@ -288,8 +288,6 @@ BIO_METHOD *create_bio_method() {
return
meth
;
}
void
delete_bio_method
(
BIO_METHOD
*
bio_method
)
{
BIO_meth_free
(
bio_method
);
}
#else // !OPENSSL_1_1_API
BIO_METHOD
*
create_bio_method
()
{
...
...
@@ -302,8 +300,6 @@ BIO_METHOD *create_bio_method() {
return
meth
;
}
void
delete_bio_method
(
BIO_METHOD
*
bio_method
)
{}
#endif // !OPENSSL_1_1_API
void
Connection
::
set_ssl
(
SSL
*
ssl
)
{
...
...
src/shrpx_connection.h
View file @
feabd6f7
...
...
@@ -164,10 +164,6 @@ struct Connection {
// Creates BIO_method shared by all SSL objects.
BIO_METHOD
*
create_bio_method
();
// Deletes given |bio_method|. If nghttp2 is built with OpenSSL <
// 1.1.0, this function is noop.
void
delete_bio_method
(
BIO_METHOD
*
bio_method
);
}
// namespace shrpx
#endif // SHRPX_CONNECTION_H
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