| 221 | } |
| 222 | |
| 223 | AP_DECLARE(apr_status_t) ap_ssl_add_cert_files(server_rec *s, apr_pool_t *p, |
| 224 | apr_array_header_t *cert_files, |
| 225 | apr_array_header_t *key_files) |
| 226 | { |
| 227 | int rv = ap_run_ssl_add_cert_files(s, p, cert_files, key_files); |
| 228 | return (rv == OK || rv == DECLINED)? APR_SUCCESS : APR_EGENERAL; |
| 229 | } |
| 230 | |
| 231 | AP_DECLARE(apr_status_t) ap_ssl_add_fallback_cert_files(server_rec *s, apr_pool_t *p, |
| 232 | apr_array_header_t *cert_files, |
no outgoing calls
no test coverage detected