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_internal.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_internal.h')
-rw-r--r-- | src/lib/libressl/ressl_internal.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libressl/ressl_internal.h b/src/lib/libressl/ressl_internal.h index c234153587..c33d4cff2e 100644 --- a/src/lib/libressl/ressl_internal.h +++ b/src/lib/libressl/ressl_internal.h | |||
@@ -27,8 +27,9 @@ | |||
27 | struct ressl_config { | 27 | struct ressl_config { |
28 | const char *ca_file; | 28 | const char *ca_file; |
29 | const char *ca_path; | 29 | const char *ca_path; |
30 | const char *cert_file; | ||
30 | const char *ciphers; | 31 | const char *ciphers; |
31 | const char *server_name; | 32 | const char *key_file; |
32 | int verify; | 33 | int verify; |
33 | int verify_depth; | 34 | int verify_depth; |
34 | }; | 35 | }; |