MCPcopy Create free account
hub / github.com/apache/httpd / modssl_is_prelinked

Function modssl_is_prelinked

modules/ssl/mod_ssl.c:316–326  ·  view source on GitHub ↗

* the various processing hooks */

Source from the content-addressed store, hash-verified

314 * the various processing hooks
315 */
316static 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
328static apr_status_t ssl_cleanup_pre_config(void *data)
329{

Callers 1

ssl_hook_pre_configFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected