diff options
author | beck <> | 2002-05-15 02:29:21 +0000 |
---|---|---|
committer | beck <> | 2002-05-15 02:29:21 +0000 |
commit | b64270d1e45fe7f3241e4c9b6ce60d5ac89bc2e9 (patch) | |
tree | fa27cf82a1250b64ed3bf5f4a18c7354d470bbcc /src/lib/libcrypto/conf/conf_api.h | |
parent | e471e1ea98d673597b182ea85f29e30c97cd08b5 (diff) | |
download | openbsd-b64270d1e45fe7f3241e4c9b6ce60d5ac89bc2e9.tar.gz openbsd-b64270d1e45fe7f3241e4c9b6ce60d5ac89bc2e9.tar.bz2 openbsd-b64270d1e45fe7f3241e4c9b6ce60d5ac89bc2e9.zip |
OpenSSL 0.9.7 stable 2002 05 08 merge
Diffstat (limited to 'src/lib/libcrypto/conf/conf_api.h')
-rw-r--r-- | src/lib/libcrypto/conf/conf_api.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/lib/libcrypto/conf/conf_api.h b/src/lib/libcrypto/conf/conf_api.h index a5cc17b233..87a954aff6 100644 --- a/src/lib/libcrypto/conf/conf_api.h +++ b/src/lib/libcrypto/conf/conf_api.h | |||
@@ -67,15 +67,17 @@ extern "C" { | |||
67 | #endif | 67 | #endif |
68 | 68 | ||
69 | /* Up until OpenSSL 0.9.5a, this was new_section */ | 69 | /* Up until OpenSSL 0.9.5a, this was new_section */ |
70 | CONF_VALUE *_CONF_new_section(CONF *conf, char *section); | 70 | CONF_VALUE *_CONF_new_section(CONF *conf, const char *section); |
71 | /* Up until OpenSSL 0.9.5a, this was get_section */ | 71 | /* Up until OpenSSL 0.9.5a, this was get_section */ |
72 | CONF_VALUE *_CONF_get_section(CONF *conf, char *section); | 72 | CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section); |
73 | /* Up until OpenSSL 0.9.5a, this was CONF_get_section */ | 73 | /* Up until OpenSSL 0.9.5a, this was CONF_get_section */ |
74 | STACK_OF(CONF_VALUE) *_CONF_get_section_values(CONF *conf, char *section); | 74 | STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf, |
75 | const char *section); | ||
75 | 76 | ||
76 | int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value); | 77 | int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value); |
77 | char *_CONF_get_string(CONF *conf, char *section, char *name); | 78 | char *_CONF_get_string(const CONF *conf, const char *section, |
78 | long _CONF_get_number(CONF *conf, char *section, char *name); | 79 | const char *name); |
80 | long _CONF_get_number(const CONF *conf, const char *section, const char *name); | ||
79 | 81 | ||
80 | int _CONF_new_data(CONF *conf); | 82 | int _CONF_new_data(CONF *conf); |
81 | void _CONF_free_data(CONF *conf); | 83 | void _CONF_free_data(CONF *conf); |