Changeset e5bbda4 in mod_gnutls for include/mod_gnutls.h.in
- Timestamp:
- Dec 15, 2007, 8:26:01 AM (15 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, master, msva, proxy-ticket, upstream
- Children:
- 5542bc6
- Parents:
- d2439b9
- git-author:
- Nikos Mavrogiannopoulos <nmav@…> (12/15/07 08:26:01)
- git-committer:
- Nokis Mavrogiannopoulos <nmav@…> (12/15/07 08:26:01)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
include/mod_gnutls.h.in
rd2439b9 re5bbda4 30 30 #include <gcrypt.h> 31 31 #include <gnutls/gnutls.h> 32 #include <gnutls/extra.h> 33 #include <gnutls/openpgp.h> 32 34 #include <gnutls/x509.h> 33 35 … … 95 97 unsigned int certs_x509_num; 96 98 gnutls_x509_privkey_t privkey_x509; 99 gnutls_openpgp_crt_t cert_pgp; /* A certificate chain */ 100 gnutls_openpgp_privkey_t privkey_pgp; 97 101 int enabled; 98 102 /* whether to send the PEM encoded certificates … … 109 113 const char* srp_tpasswd_conf_file; 110 114 gnutls_x509_crt_t ca_list[MAX_CA_CRTS]; 115 gnutls_openpgp_keyring_t pgp_list; 111 116 unsigned int ca_list_size; 112 117 int client_verify_mode; … … 255 260 const char *arg); 256 261 262 const char *mgs_set_pgpcert_file(cmd_parms * parms, void *dummy, 263 const char *arg); 264 265 const char *mgs_set_pgpkey_file(cmd_parms * parms, void *dummy, 266 const char *arg); 267 257 268 const char *mgs_set_cache(cmd_parms * parms, void *dummy, 258 269 const char *type, const char* arg); … … 265 276 266 277 const char *mgs_set_client_ca_file(cmd_parms * parms, void *dummy, 278 const char *arg); 279 280 const char *mgs_set_keyring_file(cmd_parms * parms, void *dummy, 267 281 const char *arg); 268 282
Note: See TracChangeset
for help on using the changeset viewer.