* ext/openssl/ossl_config.c: [DOC] Document the following:
- OpenSSL::ConfigError - OpenSSL::Config::DEFAULT_CONFIG_FILE Patched by @vbatts via GH-436 https://github.com/ruby/ruby/pull/436 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43667 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
49a9845405
commit
1dd8260dfa
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
|||||||
|
Wed Nov 13 18:32:12 2013 Zachary Scott <e@zzak.io>
|
||||||
|
|
||||||
|
* ext/openssl/ossl_config.c: [DOC] Document the following:
|
||||||
|
|
||||||
|
- OpenSSL::ConfigError
|
||||||
|
- OpenSSL::Config::DEFAULT_CONFIG_FILE
|
||||||
|
|
||||||
|
Patched by @vbatts via GH-436
|
||||||
|
https://github.com/ruby/ruby/pull/436
|
||||||
|
|
||||||
Wed Nov 13 18:03:00 2013 Zachary Scott <e@zzak.io>
|
Wed Nov 13 18:03:00 2013 Zachary Scott <e@zzak.io>
|
||||||
|
|
||||||
* ext/openssl/ossl_asn1.c: [DOC] Document parts of
|
* ext/openssl/ossl_asn1.c: [DOC] Document parts of
|
||||||
|
@ -15,6 +15,11 @@
|
|||||||
* Classes
|
* Classes
|
||||||
*/
|
*/
|
||||||
VALUE cConfig;
|
VALUE cConfig;
|
||||||
|
/* Document-class: OpenSSL::ConfigError
|
||||||
|
*
|
||||||
|
* General error for openssl library configuration files. Including formating,
|
||||||
|
* parsing errors, etc.
|
||||||
|
*/
|
||||||
VALUE eConfigError;
|
VALUE eConfigError;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -55,6 +60,10 @@ GetConfigPtr(VALUE obj)
|
|||||||
return conf;
|
return conf;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Document-const: DEFAULT_CONFIG_FILE
|
||||||
|
*
|
||||||
|
* The default system configuration file for openssl
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* INIT
|
* INIT
|
||||||
|
Loading…
x
Reference in New Issue
Block a user