* the various processing hooks */
| 314 | * the various processing hooks |
| 315 | */ |
| 316 | static int modssl_is_prelinked(void) |
| 317 | { |
| 318 | apr_size_t i = 0; |
| 319 | const module *mod; |
| 320 | while ((mod = ap_prelinked_modules[i++])) { |
| 321 | if (strcmp(mod->name, "mod_ssl.c") == 0) { |
| 322 | return 1; |
| 323 | } |
| 324 | } |
| 325 | return 0; |
| 326 | } |
| 327 | |
| 328 | static apr_status_t ssl_cleanup_pre_config(void *data) |
| 329 | { |
no outgoing calls
no test coverage detected