aboutsummaryrefslogtreecommitdiffstats
path: root/lib/open-uri.rb
diff options
context:
space:
mode:
authorgotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-10-07 08:53:06 +0000
committergotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-10-07 08:53:06 +0000
commita1455c75e93c536e0e8e4076fe2fa091ecb1d4ab (patch)
treedd5f589ead5457fcb6c4adc72dfe806eaac76600 /lib/open-uri.rb
parent3c78d621e60a2cae073b5e6ef7b7ac8b6d884a7e (diff)
downloadruby-a1455c75e93c536e0e8e4076fe2fa091ecb1d4ab.tar.gz
* lib/net/http.rb: remove enable_post_connection_check flag.
* lib/open-uri.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13648 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/open-uri.rb')
-rw-r--r--lib/open-uri.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/open-uri.rb b/lib/open-uri.rb
index dd0e0b5912..5e8accd8f2 100644
--- a/lib/open-uri.rb
+++ b/lib/open-uri.rb
@@ -98,7 +98,6 @@ module OpenURI
:read_timeout => true,
:ssl_ca_cert => nil,
:ssl_verify_mode => nil,
- :ssl_enable_post_connection_check => true,
:ftp_active_mode => false,
}
@@ -270,10 +269,6 @@ module OpenURI
if target.class == URI::HTTPS
require 'net/https'
http.use_ssl = true
- http.enable_post_connection_check =
- options.has_key?(:ssl_enable_post_connection_check) ?
- options[:ssl_enable_post_connection_check] :
- Options[:ssl_enable_post_connection_check]
http.verify_mode = options[:ssl_verify_mode] || OpenSSL::SSL::VERIFY_PEER
store = OpenSSL::X509::Store.new
if options[:ssl_ca_cert]