- Timestamp:
- Jan 11, 2020, 11:26:36 AM (13 months ago)
- Branches:
- asyncio, master, proxy-ticket
- Children:
- cf6f974
- Parents:
- 9418c1e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_ocsp.c
r9418c1e r98b37a1 825 825 ocsp_response->size = OCSP_RESP_SIZE_MAX; 826 826 827 apr_status_t rv = mgs_cache_fetch( ctxt->sc->ocsp_cache,827 apr_status_t rv = mgs_cache_fetch(sc->ocsp_cache, 828 828 ctxt->c->base_server, 829 ctxt->sc->ocsp->fingerprint,829 sc->ocsp->fingerprint, 830 830 ocsp_response, 831 831 ctxt->c->pool); … … 862 862 * moment there's no good way to integrate that with the 863 863 * Apache Mutex directive. */ 864 rv = mgs_cache_fetch( ctxt->sc->ocsp_cache,864 rv = mgs_cache_fetch(sc->ocsp_cache, 865 865 ctxt->c->base_server, 866 ctxt->sc->ocsp->fingerprint,866 sc->ocsp->fingerprint, 867 867 ocsp_response, 868 868 ctxt->c->pool); … … 895 895 /* cache failure to rate limit retries */ 896 896 mgs_cache_ocsp_failure(ctxt->c->base_server, 897 ctxt->sc->ocsp,898 ctxt->sc->ocsp_failure_timeout);897 sc->ocsp, 898 sc->ocsp_failure_timeout); 899 899 apr_global_mutex_unlock(sc->ocsp_mutex); 900 900 goto fail_cleanup; … … 903 903 904 904 /* retry reading from cache */ 905 rv = mgs_cache_fetch( ctxt->sc->ocsp_cache,905 rv = mgs_cache_fetch(sc->ocsp_cache, 906 906 ctxt->c->base_server, 907 ctxt->sc->ocsp->fingerprint,907 sc->ocsp->fingerprint, 908 908 ocsp_response, 909 909 ctxt->c->pool);
Note: See TracChangeset
for help on using the changeset viewer.