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

Function ap_find_linked_module

server/config.c:830–840  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

828}
829
830AP_DECLARE(module *) ap_find_linked_module(const char *name)
831{
832 module *modp;
833
834 for (modp = ap_top_module; modp; modp = modp->next) {
835 if (strcmp(modp->name, name) == 0)
836 return modp;
837 }
838
839 return NULL;
840}
841
842/*****************************************************************
843 *

Callers 6

authnz_ldap_post_configFunction · 0.85
post_configFunction · 0.85
post_configFunction · 0.85
lua_ap_module_infoFunction · 0.85
find_moduleFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected