Lines Matching defs:module
98 /* Server core module... This module provides support for really basic
100 * operation of other modules. Consider this the bureaucracy module.
102 * The core module also defines handlers, etc., to handle just enough
103 * to allow a server with the core module ONLY to actually serve documents.
1132 * Commands... this module handles almost all of the NCSA httpd.conf
1791 module *mod = ap_top_module;
2142 /* check for builtin or module registered method number */
2543 static module *find_module(server_rec *s, const char *name)
2545 module *found = ap_find_linked_module(name);
2593 module *found;
3135 module *module;
3161 if ((module = find_module(cmd->server, arg)) == NULL) {
3164 "Cannot find module '%s', trying '%s'", arg, name);
3165 module = find_module(cmd->server, name);
3168 if (module == NULL) {
3169 return apr_psprintf(cmd->temp_pool, "Cannot find module %s", arg);
3172 ap_set_module_loglevel(cmd->pool, log, module->module_index, level);
3174 "Setting %s for module %s to %s", cmd->cmd->name,
3175 module->name, level_str);
3196 return "LogLevel requires level keyword or module loglevel specifier";
4530 * discretion in their own module fixup phase. It is tristate, if
4532 * (which the module may interpret to its own customary behavior.)
4534 * so any module changing the value prior to the fixup phase
4539 /* No module knew better, and the user coded AcceptPathInfo */
4712 /* Insist that at least one module will undertake to provide system
4791 "or other system security module is loaded.");