diff options
author | jsing <> | 2014-07-13 23:54:52 +0000 |
---|---|---|
committer | jsing <> | 2014-07-13 23:54:52 +0000 |
commit | d7ab7ae63ec9e2cfea86563f9927749ed3297ea5 (patch) | |
tree | 8fb6137ffeff2b347f288c4bafbd0cc3eae2b0e1 /src/lib/libressl/ressl.h | |
parent | fc19c3ca500bc9693f2e3165ae04f82eac326eed (diff) | |
download | openbsd-d7ab7ae63ec9e2cfea86563f9927749ed3297ea5.tar.gz openbsd-d7ab7ae63ec9e2cfea86563f9927749ed3297ea5.tar.bz2 openbsd-d7ab7ae63ec9e2cfea86563f9927749ed3297ea5.zip |
Add configuration handling for certificate and key files.
Diffstat (limited to 'src/lib/libressl/ressl.h')
-rw-r--r-- | src/lib/libressl/ressl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/libressl/ressl.h b/src/lib/libressl/ressl.h index dc99368fe6..d4962f358b 100644 --- a/src/lib/libressl/ressl.h +++ b/src/lib/libressl/ressl.h | |||
@@ -29,7 +29,9 @@ void ressl_config_free(struct ressl_config *config); | |||
29 | 29 | ||
30 | void ressl_config_set_ca_file(struct ressl_config *config, char *ca_file); | 30 | void ressl_config_set_ca_file(struct ressl_config *config, char *ca_file); |
31 | void ressl_config_set_ca_path(struct ressl_config *config, char *ca_path); | 31 | void ressl_config_set_ca_path(struct ressl_config *config, char *ca_path); |
32 | void ressl_config_set_cert_file(struct ressl_config *config, char *cert_file); | ||
32 | void ressl_config_set_ciphers(struct ressl_config *config, char *ciphers); | 33 | void ressl_config_set_ciphers(struct ressl_config *config, char *ciphers); |
34 | void ressl_config_set_key_file(struct ressl_config *config, char *key_file); | ||
33 | void ressl_config_set_verify_depth(struct ressl_config *config, | 35 | void ressl_config_set_verify_depth(struct ressl_config *config, |
34 | int verify_depth); | 36 | int verify_depth); |
35 | 37 | ||