summaryrefslogtreecommitdiff
path: root/src/lib/libressl/ressl_internal.h
diff options
context:
space:
mode:
authorjsing <>2014-07-13 23:54:52 +0000
committerjsing <>2014-07-13 23:54:52 +0000
commitd7ab7ae63ec9e2cfea86563f9927749ed3297ea5 (patch)
tree8fb6137ffeff2b347f288c4bafbd0cc3eae2b0e1 /src/lib/libressl/ressl_internal.h
parentfc19c3ca500bc9693f2e3165ae04f82eac326eed (diff)
downloadopenbsd-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.h3
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 @@
27struct ressl_config { 27struct 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};