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

Function ap_show_modules

server/config.c:2500–2507  ·  view source on GitHub ↗

Show the preloaded module names. Used for httpd -l. */

Source from the content-addressed store, hash-verified

2498
2499/* Show the preloaded module names. Used for httpd -l. */
2500AP_DECLARE(void) ap_show_modules(void)
2501{
2502 int n;
2503
2504 printf("Compiled in modules:\n");
2505 for (n = 0; ap_loaded_modules[n]; ++n)
2506 printf(" %s\n", ap_loaded_modules[n]->name);
2507}
2508
2509AP_DECLARE(int) ap_exists_directive(apr_pool_t *p, const char *name)
2510{

Callers 2

mainFunction · 0.85
CommandLineInterpreterFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected