|
Apache HTTP Server Version 1.3Module mod_dldThis module is obsolete. As of version 1.3 of Apache, it has been replaced with mod_so. This module is contained in themod_dld.c file, and is not
compiled in by default. It provides for loading of executable code
and modules into the server at start-up time, using the GNU dld library.
SummaryThe optional dld module is a proof-of-concept piece of code which loads other modules into the server as it is configuring itself (the first time only; for now, rereading the config files cannot affect the state of loaded modules), using the GNU dynamic linking library, DLD. It isn't compiled into the server by default, since not everyone has DLD, but it works when I try it. (Famous last words.)
Note that for some reason, Note: that DLD needs to read the symbol table out of the server binary when starting up; these commands will fail if the server can't find its own binary when it starts up, or if that binary is stripped.
DirectivesLoadFileSyntax: LoadFile filename filename ...Context: server config Status: Experimental Module: mod_dld The LoadFile directive links in the named object files or libraries when the server is started; this is used to load additional code which may be required for some module to work. Filename is relative to ServerRoot. LoadModuleSyntax: LoadModule module filenameContext: server config Status: Experimental Module: mod_dld
The LoadModule directive links in the object file or library filename
and adds the module structure named module to the list of active
modules. Module is the name of the external variable of type
loads the module in the modules subdirectory of the ServerRoot.
Apache HTTP Server Version 1.3 |
|||||||||||||||||
With any suggestions or questions please feel free to contact us |