From a5fc87bd5ba21f1704e566344653f6d9d381fa8f Mon Sep 17 00:00:00 2001 From: drbrain Date: Wed, 9 Nov 2011 23:45:39 +0000 Subject: * ext/openssl/lib/openssl/ssl.rb (class OpenSSL::SSL::SSLContext): Document #set_params. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33695 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ ext/openssl/lib/openssl/ssl.rb | 8 ++++++++ 2 files changed, 13 insertions(+) diff --git a/ChangeLog b/ChangeLog index cc893f3e76..e25cc26c77 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Nov 10 07:45:16 2011 Eric Hodel + + * ext/openssl/lib/openssl/ssl.rb (class OpenSSL::SSL::SSLContext): + Document #set_params. + Wed Nov 9 11:36:53 2011 KOSAKI Motohiro * thread_pthread.c (gvl_yield): don't prevent concurrent sched_yield(). diff --git a/ext/openssl/lib/openssl/ssl.rb b/ext/openssl/lib/openssl/ssl.rb index c70b5b8f6b..b9ad838524 100644 --- a/ext/openssl/lib/openssl/ssl.rb +++ b/ext/openssl/lib/openssl/ssl.rb @@ -33,6 +33,14 @@ module OpenSSL DEFAULT_CERT_STORE.flags = OpenSSL::X509::V_FLAG_CRL_CHECK_ALL end + ## + # Sets the parameters for this SSL context to the values in +params+. + # The keys in +params+ must be assignment methods on SSLContext. + # + # If the verify_mode is not VERIFY_NONE and ca_file, ca_path and + # cert_store are not set then the system default certificate store is + # used. + def set_params(params={}) params = DEFAULT_PARAMS.merge(params) params.each{|name, value| self.__send__("#{name}=", value) } -- cgit v1.2.3