summaryrefslogtreecommitdiff
path: root/apps/include
diff options
context:
space:
mode:
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>2021-05-12 13:58:52 +0200
committerDr. David von Oheimb <dev@ddvo.net>2021-05-18 11:08:10 +0200
commit88d96983d881254d0bcb36d79b32aac08339e0d3 (patch)
tree5a6eb427697f5802e8017feab1c832edf5d33593 /apps/include
parent7d72dc78ee54cc3b9163ef9b23cf22bb85015552 (diff)
downloadopenssl-new-88d96983d881254d0bcb36d79b32aac08339e0d3.tar.gz
apps/ocsp: Add -proxy and -no_proxy options
Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15245)
Diffstat (limited to 'apps/include')
-rw-r--r--apps/include/apps.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/include/apps.h b/apps/include/apps.h
index 41178a6e22..829c49e34e 100644
--- a/apps/include/apps.h
+++ b/apps/include/apps.h
@@ -175,10 +175,10 @@ const EVP_MD *get_digest_from_engine(const char *name);
const EVP_CIPHER *get_cipher_from_engine(const char *name);
# ifndef OPENSSL_NO_OCSP
-OCSP_RESPONSE *process_responder(OCSP_REQUEST *req,
- const char *host, const char *path,
- const char *port, int use_ssl,
- STACK_OF(CONF_VALUE) *headers,
+OCSP_RESPONSE *process_responder(OCSP_REQUEST *req, const char *host,
+ const char *port, const char *path,
+ const char *proxy, const char *no_proxy,
+ int use_ssl, STACK_OF(CONF_VALUE) *headers,
int req_timeout);
# endif