Apache 1.3 API Documentation

Global Data Cell core_module

Definition:

module core_module {module-specific-info};
     

Usage example:

module core_module = { 
   STANDARD_MODULE_STUFF, 
   NULL,                        /* initializer */ 
   create_core_dir_config,      /* create per-directory config structure */ 
   merge_core_dir_configs,      /* merge per-directory config structures */ 
   create_core_server_config,   /* create per-server config structure */ 
   merge_core_server_configs,   /* merge per-server config structures */ 
   core_cmds,                   /* command table */ 
   core_handlers,               /* handlers */ 
   core_translate,              /* translate_handler */ 
   NULL,                        /* check_user_id */ 
   NULL,                        /* check auth */ 
   do_nothing,                  /* check access */ 
   do_nothing,                  /* type_checker */ 
   NULL,                        /* pre-run fixups */ 
   NULL,                        /* logger */ 
   NULL,                        /* header parser */ 
   NULL,                        /* child_init */ 
   NULL,                        /* child_exit */ 
   NULL                         /* post_read_request */ 
}; 
     

This global module structure will be first in the core static module list. The core_module is exposed to other modules for NCSA back compatibility.

See also:
ap_add_loaded_module, ap_add_module, ap_add_named_module, ap_remove_loaded_module, ap_remove_module, module, top_module

Previous: ap_user_name Next: top_module

Table of Contents (Routines, Structures, Data Cells, Constants)