From 7fb00c94e8dc777b5d7cd164c511b9197c012b0d Mon Sep 17 00:00:00 2001 From: gotoyuzo Date: Mon, 8 Sep 2003 10:28:46 +0000 Subject: [PATCH] * ext/openssl/ossl.h: include openssl/conf.h and openssl/conf_api.h. * ext/openssl/ossl_config.c: refine all with backward compatibility. * ext/openssl/ossl_config.h: export GetConfigPtr() and DupConfigPtr(). * ext/openssl/ossl_x509.c: new constants (DEFAULT_CERT_AREA, DEFAULT_CERT_DIR, DEFAULT_CERT_FILE, DEFAULT_CERT_DIR_ENV, DEFAULT_CERT_FILE_ENV and DEFAULT_PRIVATE_DIR) in X509 module. * ext/openssl/ossl_x509ext.c (ossl_x509extfactory_free): don't free the members of the struct. it's left to GC. * ext/openssl/ossl_x509ext.c (ossl_x509_set_config): add for config=. * ext/openssl/ossl_x509ext.c (Xossl_x509extfactory_initialize): add attr readers: issuer_certificate, subject_certificate, subject_request, crl and config. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4530 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/ChangeLog b/ChangeLog index c7fdea656f..b331c7c772 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,24 @@ +Mon Sep 8 19:26:33 2003 GOTOU Yuuzou + + * ext/openssl/ossl.h: include openssl/conf.h and openssl/conf_api.h. + + * ext/openssl/ossl_config.c: refine all with backward compatibility. + + * ext/openssl/ossl_config.h: export GetConfigPtr() and DupConfigPtr(). + + * ext/openssl/ossl_x509.c: new constants DEFAULT_CERT_AREA, + DEFAULT_CERT_DIR, DEFAULT_CERT_FILE, DEFAULT_CERT_DIR_ENV, + DEFAULT_CERT_FILE_ENV and DEFAULT_PRIVATE_DIR in X509 module. + + * ext/openssl/ossl_x509ext.c (ossl_x509extfactory_free): don't free + the members of the struct. it's left to GC. + + * ext/openssl/ossl_x509ext.c (ossl_x509_set_config): add for config=. + + * ext/openssl/ossl_x509ext.c (Xossl_x509extfactory_initialize): + add attr readers: issuer_certificate, subject_certificate, + subject_request, crl and config. + Mon Sep 8 18:26:41 2003 GOTOU Yuuzou * lib/webrick/accesslog.rb (AccessLog::setup_params): use req.port