diff options
author | Joe Orton <jorton@apache.org> | 2019-07-09 13:02:43 +0200 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2019-07-09 13:02:43 +0200 |
commit | e729e4de7ea79784a4b7f79cde237ba8959f32da (patch) | |
tree | ce3e0d553ef5acb8b9fbffd3c9e6095a8597da4e /modules | |
parent | update after mod_md backport (diff) | |
download | apache2-e729e4de7ea79784a4b7f79cde237ba8959f32da.tar.xz apache2-e729e4de7ea79784a4b7f79cde237ba8959f32da.zip |
* include/ssl/mod_ssl.h: Include apr_tables.h and use apr_array_header_t
directly.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1862803 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules')
-rw-r--r-- | modules/ssl/mod_ssl.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/modules/ssl/mod_ssl.h b/modules/ssl/mod_ssl.h index 5856680870..47d254f82d 100644 --- a/modules/ssl/mod_ssl.h +++ b/modules/ssl/mod_ssl.h @@ -29,8 +29,7 @@ #include "httpd.h" #include "http_config.h" #include "apr_optional.h" - -struct apr_array_header_t; +#include "apr_tables.h" /* for apr_array_header_t */ /* Create a set of SSL_DECLARE(type), SSL_DECLARE_NONSTD(type) and * SSL_DECLARE_DATA with appropriate export and import tags for the platform @@ -106,8 +105,8 @@ APR_DECLARE_OPTIONAL_FN(int, ssl_engine_set, (conn_rec *, * For each cert a key must also be added. */ APR_DECLARE_EXTERNAL_HOOK(ssl, SSL, int, add_cert_files, (server_rec *s, apr_pool_t *p, - struct apr_array_header_t *cert_files, - struct apr_array_header_t *key_files)) + apr_array_header_t *cert_files, + apr_array_header_t *key_files)) /** In case no certificates are available for a server, this * lets other modules add a fallback certificate for the time @@ -115,8 +114,8 @@ APR_DECLARE_EXTERNAL_HOOK(ssl, SSL, int, add_cert_files, * with a 503. */ APR_DECLARE_EXTERNAL_HOOK(ssl, SSL, int, add_fallback_cert_files, (server_rec *s, apr_pool_t *p, - struct apr_array_header_t *cert_files, - struct apr_array_header_t *key_files)) + apr_array_header_t *cert_files, + apr_array_header_t *key_files)) /** On TLS connections that do not relate to a configured virtual host, * allow other modules to provide a X509 certificate and EVP_PKEY to |