mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
We need to get the SSL_CTX for further processing down below.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1828793 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -475,7 +475,7 @@ static int ssl_hook_Access_classic(request_rec *r, SSLSrvConfigRec *sc, SSLDirCo
|
|||||||
{
|
{
|
||||||
server_rec *handshakeserver = sslconn ? sslconn->server : NULL;
|
server_rec *handshakeserver = sslconn ? sslconn->server : NULL;
|
||||||
SSLSrvConfigRec *hssc = handshakeserver? mySrvConfig(handshakeserver) : NULL;
|
SSLSrvConfigRec *hssc = handshakeserver? mySrvConfig(handshakeserver) : NULL;
|
||||||
SSL_CTX *ctx = NULL;
|
SSL_CTX *ctx = ssl ? SSL_get_SSL_CTX(ssl) : NULL;
|
||||||
apr_array_header_t *requires;
|
apr_array_header_t *requires;
|
||||||
ssl_require_t *ssl_requires;
|
ssl_require_t *ssl_requires;
|
||||||
int ok, i, rc;
|
int ok, i, rc;
|
||||||
|
Reference in New Issue
Block a user