Changeset 31645b2 in mod_gnutls for include/mod_gnutls.h.in
- Timestamp:
- Apr 21, 2005, 1:15:56 PM (17 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, master, msva, proxy-ticket, upstream
- Children:
- e924ddd
- Parents:
- 0475f1bc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
include/mod_gnutls.h.in
r0475f1bc r31645b2 28 28 #include "ap_release.h" 29 29 30 #include <gcrypt.h> 31 #include <gnutls/gnutls.h> 32 #include <gnutls/x509.h> 33 30 34 #ifndef __mod_gnutls_h_inc 31 35 #define __mod_gnutls_h_inc 32 36 33 37 #define HAVE_APR_MEMCACHE @have_apr_memcache@ 34 35 #include <gcrypt.h>36 #include <gnutls/gnutls.h>37 38 38 39 module AP_MODULE_DECLARE_DATA gnutls_module; … … 71 72 typedef struct 72 73 { 74 gnutls_certificate_request_t client_verify_mode; 75 } mod_gnutls_dirconf_rec; 76 77 typedef struct 78 { 73 79 gnutls_certificate_credentials_t certs; 74 char *key_file;75 char *cert_file;80 gnutls_x509_crt_t cert_x509; 81 gnutls_x509_privkey_t privkey_x509; 76 82 int enabled; 77 83 int ciphers[16]; … … 86 92 const char* rsa_params_file; 87 93 const char* dh_params_file; 94 gnutls_certificate_request_t client_verify_mode; 88 95 } mod_gnutls_srvconf_rec; 89 96
Note: See TracChangeset
for help on using the changeset viewer.