summaryrefslogtreecommitdiffstats
path: root/apps/s_apps.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2012-12-06 19:43:40 +0100
committerDr. Stephen Henson <steve@openssl.org>2012-12-06 19:43:40 +0100
commit0090a686c0620e5f7d72aef2e74f4a0e01c53e3e (patch)
tree9005122bc807212e4ab9ca0956aebc4a74cf3a7a /apps/s_apps.h
parentremove print_ssl_cert_checks() from openssl application: it is no longer used (diff)
downloadopenssl-0090a686c0620e5f7d72aef2e74f4a0e01c53e3e.tar.xz
openssl-0090a686c0620e5f7d72aef2e74f4a0e01c53e3e.zip
Add code to download CRLs based on CRLDP extension.
Just a sample, real world applications would have to be cleverer.
Diffstat (limited to 'apps/s_apps.h')
-rw-r--r--apps/s_apps.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/s_apps.h b/apps/s_apps.h
index f6e85ee562..83526eca30 100644
--- a/apps/s_apps.h
+++ b/apps/s_apps.h
@@ -197,9 +197,9 @@ int args_ssl(char ***pargs, int *pargc, SSL_CONF_CTX *cctx,
int *badarg, BIO *err, STACK_OF(OPENSSL_STRING) **pstr);
int args_ssl_call(SSL_CTX *ctx, BIO *err, SSL_CONF_CTX *cctx,
STACK_OF(OPENSSL_STRING) *str, int no_ecdhe);
-int ssl_ctx_add_crls(SSL_CTX *ctx, STACK_OF(X509_CRL) *crls);
+int ssl_ctx_add_crls(SSL_CTX *ctx, STACK_OF(X509_CRL) *crls, int crl_download);
int ssl_load_stores(SSL_CTX *ctx,
const char *vfyCApath, const char *vfyCAfile,
const char *chCApath, const char *chCAfile,
- STACK_OF(X509_CRL) *crls);
+ STACK_OF(X509_CRL) *crls, int crl_download);
#endif