Compare commits

...

3 Commits

Author SHA1 Message Date
Tatsuhiro Tsujikawa c13e63a501 Update manual pages 2017-05-30 23:57:53 +09:00
Tatsuhiro Tsujikawa c6d89dd0ba Bump up version number to 1.23.1 2017-05-30 23:55:55 +09:00
Tatsuhiro Tsujikawa d134ccd35d nghttpx: Fix crash in OCSP response verification 2017-05-30 23:55:11 +09:00
7 changed files with 10 additions and 7 deletions

View File

@ -24,7 +24,7 @@
cmake_minimum_required(VERSION 3.0)
# XXX using 1.8.90 instead of 1.9.0-DEV
project(nghttp2 VERSION 1.23.0)
project(nghttp2 VERSION 1.23.1)
# See versioning rule:
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html

View File

@ -25,7 +25,7 @@ dnl Do not change user variables!
dnl http://www.gnu.org/software/automake/manual/html_node/Flag-Variables-Ordering.html
AC_PREREQ(2.61)
AC_INIT([nghttp2], [1.23.0], [t-tujikawa@users.sourceforge.net])
AC_INIT([nghttp2], [1.23.1], [t-tujikawa@users.sourceforge.net])
AC_CONFIG_AUX_DIR([.])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([config.h])

View File

@ -1,6 +1,6 @@
.\" Man page generated from reStructuredText.
.
.TH "H2LOAD" "1" "May 26, 2017" "1.23.0" "nghttp2"
.TH "H2LOAD" "1" "May 30, 2017" "1.23.1" "nghttp2"
.SH NAME
h2load \- HTTP/2 benchmarking tool
.

View File

@ -1,6 +1,6 @@
.\" Man page generated from reStructuredText.
.
.TH "NGHTTP" "1" "May 26, 2017" "1.23.0" "nghttp2"
.TH "NGHTTP" "1" "May 30, 2017" "1.23.1" "nghttp2"
.SH NAME
nghttp \- HTTP/2 client
.

View File

@ -1,6 +1,6 @@
.\" Man page generated from reStructuredText.
.
.TH "NGHTTPD" "1" "May 26, 2017" "1.23.0" "nghttp2"
.TH "NGHTTPD" "1" "May 30, 2017" "1.23.1" "nghttp2"
.SH NAME
nghttpd \- HTTP/2 server
.

View File

@ -1,6 +1,6 @@
.\" Man page generated from reStructuredText.
.
.TH "NGHTTPX" "1" "May 26, 2017" "1.23.0" "nghttp2"
.TH "NGHTTPX" "1" "May 30, 2017" "1.23.1" "nghttp2"
.SH NAME
nghttpx \- HTTP/2 proxy
.

View File

@ -1844,9 +1844,12 @@ int verify_ocsp_response(SSL_CTX *ssl_ctx, const uint8_t *ocsp_resp,
}
auto bs_deleter = defer(OCSP_BASICRESP_free, bs);
auto store = X509_STORE_new();
auto store_deleter = defer(X509_STORE_free, store);
ERR_clear_error();
rv = OCSP_basic_verify(bs, chain_certs, nullptr, OCSP_TRUSTOTHER);
rv = OCSP_basic_verify(bs, chain_certs, store, OCSP_TRUSTOTHER);
if (rv != 1) {
LOG(ERROR) << "OCSP_basic_verify failed: "