From 34f6c69a800a5d70f0697d516907e9a5e89d0e1e Mon Sep 17 00:00:00 2001 From: gotoyuzo Date: Sun, 23 Sep 2007 22:21:18 +0000 Subject: * lib/net/http.rb: an SSL verification (the server hostname should be matched with its certificate's commonName) is added. this verification can be skipped by "Net::HTTP#enable_post_connection_check=(false)". suggested by Chris Clark * lib/net/open-uri.rb: use Net::HTTP#enable_post_connection_check to perform SSL post connection check. * ext/openssl/lib/openssl/ssl.c (OpenSSL::SSL::SSLSocket#post_connection_check): refine error message. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13499 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 5d38d7b7a..830724b19 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,17 @@ +Mon Sep 24 06:49:15 2007 GOTOU Yuuzou + + * lib/net/http.rb: an SSL verification (the server hostname should + be matched with its certificate's commonName) is added. + this verification can be skipped by + "Net::HTTP#enable_post_connection_check=(false)". + suggested by Chris Clark + + * lib/net/open-uri.rb: use Net::HTTP#enable_post_connection_check to + perform SSL post connection check. + + * ext/openssl/lib/openssl/ssl.c + (OpenSSL::SSL::SSLSocket#post_connection_check): refine error message. + Sun Sep 23 09:05:05 2007 Nobuyoshi Nakada * gc.c (os_obj_of, os_each_obj): hide objects to be finalized. -- cgit