diff options
author | Stefan Eissing <icing@apache.org> | 2017-09-08 12:29:53 +0200 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2017-09-08 12:29:53 +0200 |
commit | 55956ee61970398d45d0171763f4d46b76a1910a (patch) | |
tree | 2eca6c218b1c4ddc35c8f599e6549501d41933d0 /modules/ssl/ssl_private.h | |
parent | core: Disallow Methods' registration at run time (.htaccess), they may be (diff) | |
download | apache2-55956ee61970398d45d0171763f4d46b76a1910a.tar.xz apache2-55956ee61970398d45d0171763f4d46b76a1910a.zip |
On the trunk:
mod_ssl: Extending SSLEngine to alternatively get a list of add:port spec as used in VirtualHost.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1807709 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/ssl/ssl_private.h')
-rw-r--r-- | modules/ssl/ssl_private.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/ssl/ssl_private.h b/modules/ssl/ssl_private.h index a6bb59f04c..732670b3c9 100644 --- a/modules/ssl/ssl_private.h +++ b/modules/ssl/ssl_private.h @@ -740,6 +740,7 @@ struct SSLSrvConfigRec { apr_array_header_t *policies; /* policy that shall be applied to this config */ const char *error_policy; /* error in policy merge, bubble up */ + server_addr_rec *enabled_on; /* optional list of addresses where ssl is enabled */ }; /** @@ -1091,6 +1092,8 @@ extern int ssl_running_on_valgrind; int ssl_is_challenge(conn_rec *c, const char *servername, X509 **pcert, EVP_PKEY **pkey); +int ssl_server_addr_overlap(server_addr_rec *sar1, server_addr_rec *sar2); + #endif /* SSL_PRIVATE_H */ /** @} */ |