| 243 | } |
| 244 | |
| 245 | AP_DECLARE(apr_status_t) ap_ssl_ocsp_prime(server_rec *s, apr_pool_t *p, |
| 246 | const char *id, apr_size_t id_len, |
| 247 | const char *pem) |
| 248 | { |
| 249 | int rv = ap_run_ssl_ocsp_prime_hook(s, p, id, id_len, pem); |
| 250 | return rv == OK? APR_SUCCESS : (rv == DECLINED? APR_ENOENT : APR_EGENERAL); |
| 251 | } |
| 252 | |
| 253 | AP_DECLARE(apr_status_t) ap_ssl_ocsp_get_resp(server_rec *s, conn_rec *c, |
| 254 | const char *id, apr_size_t id_len, |
no outgoing calls
no test coverage detected