Changeset a8374f7 in mod_gnutls for src/gnutls_ocsp.h
- Timestamp:
- Jan 11, 2020, 9:51:53 AM (15 months ago)
- Branches:
- asyncio, master, proxy-ticket
- Children:
- bdd10be
- Parents:
- 20a3915
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_ocsp.h
r20a3915 ra8374f7 40 40 */ 41 41 struct mgs_ocsp_data { 42 /** OCSP URI extracted from the server certificate. NULL if 43 * unset. */ 42 /** The certificate the following elements refer to. */ 43 gnutls_x509_crt_t cert; 44 /** OCSP URI extracted from the certificate. NULL if unset. */ 44 45 apr_uri_t *uri; 45 46 /** Trust list to verify OCSP responses for stapling. Should 46 * usually only contain the CA that signed the server 47 * certificate. */ 47 * usually only contain the CA that signed the certificate. */ 48 48 gnutls_x509_trust_list_t *trust; 49 /** Server certificate fingerprint, used as cache key for the OCSP50 * response */49 /** Certificate fingerprint, used as cache key for the OCSP 50 * response. */ 51 51 gnutls_datum_t fingerprint; 52 52 };
Note: See TracChangeset
for help on using the changeset viewer.