diff options
author | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-11-13 09:34:08 +0000 |
---|---|---|
committer | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-11-13 09:34:08 +0000 |
commit | 1dd8260dfa400b7edf6ad3d9a299b9b825210b65 (patch) | |
tree | 386a1a4580f04de7ece3b2b17abb043924df25b3 /ext/openssl/ossl_config.c | |
parent | 49a9845405ef8f3e68b98947a0311b409b06a9c2 (diff) |
* 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
Diffstat (limited to 'ext/openssl/ossl_config.c')
-rw-r--r-- | ext/openssl/ossl_config.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ext/openssl/ossl_config.c b/ext/openssl/ossl_config.c index e700833076..0f25a19e50 100644 --- a/ext/openssl/ossl_config.c +++ b/ext/openssl/ossl_config.c @@ -15,6 +15,11 @@ * Classes */ VALUE cConfig; +/* Document-class: OpenSSL::ConfigError + * + * General error for openssl library configuration files. Including formating, + * parsing errors, etc. + */ VALUE eConfigError; /* @@ -55,6 +60,10 @@ GetConfigPtr(VALUE obj) return conf; } +/* Document-const: DEFAULT_CONFIG_FILE + * + * The default system configuration file for openssl + */ /* * INIT |