| 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, |
| 233 | apr_array_header_t *key_files) |
| 234 | { |
| 235 | int rv = ap_run_ssl_add_fallback_cert_files(s, p, cert_files, key_files); |
| 236 | return (rv == OK || rv == DECLINED)? APR_SUCCESS : APR_EGENERAL; |
| 237 | } |
| 238 | |
| 239 | AP_DECLARE(int) ap_ssl_answer_challenge(conn_rec *c, const char *server_name, |
| 240 | const char **pcert_pem, const char **pkey_pem) |
no outgoing calls
no test coverage detected