-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodules.c
56 lines (49 loc) · 1.21 KB
/
modules.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
* modules.c --- automatically generated by Apache
* configuration script. DO NOT HAND EDIT!!!!!
*/
#include "ap_config.h"
#include "httpd.h"
#include "http_config.h"
extern module core_module;
extern module so_module;
extern module http_module;
extern module mpm_worker_module;
/*
* Modules which implicitly form the
* list of activated modules on startup,
* i.e. these are the modules which are
* initially linked into the Apache processing
* [extendable under run-time via AddModule]
*/
module *ap_prelinked_modules[] = {
&core_module,
&so_module,
&http_module,
&mpm_worker_module,
NULL
};
/*
* We need the symbols as strings for <IfModule> containers
*/
ap_module_symbol_t ap_prelinked_module_symbols[] = {
{"core_module", &core_module},
{"so_module", &so_module},
{"http_module", &http_module},
{"mpm_worker_module", &mpm_worker_module},
{NULL, NULL}
};
/*
* Modules which initially form the
* list of available modules on startup,
* i.e. these are the modules which are
* initially loaded into the Apache process
* [extendable under run-time via LoadModule]
*/
module *ap_preloaded_modules[] = {
&core_module,
&so_module,
&http_module,
&mpm_worker_module,
NULL
};