mirror of
https://github.com/apache/httpd.git
synced 2025-08-07 04:02:58 +03:00
mod_ssl namespacing: Rename SSL_init_app_data2_idx, SSL_get_app_data2,
and SSL_set_app_data2 from SSL_* to modssl_*. Update references in README.dsov.* files. Rename static variable SSL_app_data2_idx to just app_data2_idx since the symbol is internal to ssl_util_ssl.c. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1677143 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -229,7 +229,7 @@ int ssl_hook_ReadReq(request_rec *r)
|
||||
}
|
||||
}
|
||||
#endif
|
||||
SSL_set_app_data2(ssl, r);
|
||||
modssl_set_app_data2(ssl, r);
|
||||
|
||||
/*
|
||||
* Log information about incoming HTTPS requests
|
||||
@@ -1385,7 +1385,7 @@ int ssl_callback_SSLVerify(int ok, X509_STORE_CTX *ctx)
|
||||
SSL *ssl = X509_STORE_CTX_get_ex_data(ctx,
|
||||
SSL_get_ex_data_X509_STORE_CTX_idx());
|
||||
conn_rec *conn = (conn_rec *)SSL_get_app_data(ssl);
|
||||
request_rec *r = (request_rec *)SSL_get_app_data2(ssl);
|
||||
request_rec *r = (request_rec *)modssl_get_app_data2(ssl);
|
||||
server_rec *s = r ? r->server : mySrvFromConn(conn);
|
||||
|
||||
SSLSrvConfigRec *sc = mySrvConfig(s);
|
||||
|
Reference in New Issue
Block a user