Searched defs:module (Results 1 - 4 of 4) sorted by relevance

/httpd/include/
H A Dapreq_module.h37 * An apreq handle associated with a module. The structure
38 * may have variable size, because the module may append its own data
42 /** the apreq module which implements this handle */
43 const struct apreq_module_t *module; member in struct:apreq_handle_t
52 * @brief Vtable describing the necessary module functions.
57 /** name of this apreq module */
59 /** magic number identifying the module and version */
102 * Defines the module-specific status codes which
132 * @return APR_SUCCESS or a module-specific error status code.
137 return req->module
[all...]
H A Dhttp_config.h339 typedef struct module_struct module; typedef in typeref:struct:module_struct
341 /** API version, *not* module version; check that module is
346 * during module init */
351 /** The name of the module's C file */
356 /** A pointer to the next module in the list
361 /** Magic Cookie to identify a module structure; It's mainly
402 /** A command_rec table that describes all of the directives this module
416 * The APLOG_USE_MODULE macro is used choose which module a file belongs to.
417 * This is necessary to allow per-module logleve
[all...]
/httpd/modules/aaa/
H A Dmod_authn_socache.c34 module AP_MODULE_DECLARE_DATA authn_socache_module;
98 "load mod_socache_shmcb or another socache module first");
174 "to load the appropriate socache module "
288 static void ap_authn_cache_store(request_rec *r, const char *module, argument
299 /* first check whether we're cacheing for this module */
305 if (!strcmp(module, APR_ARRAY_IDX(dcfg->providers, i, const char*))) {
325 module, dcfg->context);
346 module, dcfg->context);
/httpd/server/
H A Dcore.c98 /* 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 *foun
3135 module *module; local
[all...]

Completed in 322 milliseconds