Changeset cc74801e in mod_gnutls for src/gnutls_ocsp.h


Ignore:
Timestamp:
Jun 10, 2016, 8:19:20 PM (7 years ago)
Author:
Thomas Klute <thomas2.klute@…>
Branches:
asyncio, debian/master, debian/stretch-backports, main, master, proxy-ticket, upstream
Children:
a372379
Parents:
6b89353
Message:

Move generated vhost-wide OCSP config into a private structure

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/gnutls_ocsp.h

    r6b89353 rcc74801e  
    2424
    2525#define MGS_OCSP_MUTEX_NAME "gnutls-ocsp"
     26
     27/**
     28 * Vhost specific OCSP data structure
     29 */
     30struct mgs_ocsp_data {
     31    /* OCSP URI extracted from the server certificate. NULL if
     32     * unset. */
     33    apr_uri_t *uri;
     34    /* Trust list to verify OCSP responses for stapling. Should
     35     * usually only contain the CA that signed the server
     36     * certificate. */
     37    gnutls_x509_trust_list_t *trust;
     38};
    2639
    2740const char *mgs_store_ocsp_response_path(cmd_parms * parms,
Note: See TracChangeset for help on using the changeset viewer.