Apache 1.3 API Documentation

Routine ap_add_loaded_module

Definition:

void ap_add_loaded_module(module *m);
     

Usage example:

module mod; 
ap_add_loaded_module(mod);
     

This routine links the specified module record into the core server's list of available modules. The module in question must already have been loaded into memory, either as a DSO or by being statically linked into the server.

This routine should not be called unless you are very sure you know what you're doing, as it can render the server unstable if not used correctly.
See also:
ap_add_module, ap_add_named_module, ap_remove_loaded_module, ap_remove_module, core_module, module, top_module

Previous: ap_add_common_vars Next: ap_add_module

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