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

Function ap_get_module_flags

server/util_debug.c:110–119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108}
109
110AP_DECLARE(int) ap_get_module_flags(const module *m)
111{
112 if (m->version < AP_MODULE_FLAGS_MMN_MAJOR
113 || (m->version == AP_MODULE_FLAGS_MMN_MAJOR
114 && (m->minor_version < AP_MODULE_FLAGS_MMN_MINOR))) {
115 return 0;
116 }
117
118 return m->flags;
119}
120
121#if defined(ap_get_core_module_config)
122#undef ap_get_core_module_config

Callers 1

merge_server_configsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected