Author: rjung Date: Sun May 24 18:16:01 2015 New Revision: 1681509 URL: http://svn.apache.org/r1681509 Log: Drop unused structure members. Prepare for ECC certificates.
Modified: tomcat/native/trunk/native/include/ssl_private.h Modified: tomcat/native/trunk/native/include/ssl_private.h URL: http://svn.apache.org/viewvc/tomcat/native/trunk/native/include/ssl_private.h?rev=1681509&r1=1681508&r2=1681509&view=diff ============================================================================== --- tomcat/native/trunk/native/include/ssl_private.h (original) +++ tomcat/native/trunk/native/include/ssl_private.h Sun May 24 18:16:01 2015 @@ -60,7 +60,8 @@ #define SSL_AIDX_RSA (0) #define SSL_AIDX_DSA (1) -#define SSL_AIDX_MAX (2) +#define SSL_AIDX_ECC (3) +#define SSL_AIDX_MAX (4) /* * Define the SSL options @@ -236,8 +237,6 @@ struct tcn_ssl_ctxt_t { X509_STORE *crl; /* pointer to the context verify store */ X509_STORE *store; - const char *cert_files[SSL_AIDX_MAX]; - const char *key_files[SSL_AIDX_MAX]; X509 *certs[SSL_AIDX_MAX]; EVP_PKEY *keys[SSL_AIDX_MAX]; --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org