From 46d10cb3485b9b199d1003f8f48c521d73010b99 Mon Sep 17 00:00:00 2001 From: pcs Date: Tue, 3 Feb 1998 11:40:24 +0000 Subject: [PATCH] Document change from mod_dld to mod_so. Actual mod_so usage info to still pretty minimal. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80100 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/directives.html | 4 +- docs/manual/mod/index.html | 6 ++- docs/manual/mod/mod_so.html | 95 +++++++++++++++++++++++++++++++++ 3 files changed, 101 insertions(+), 4 deletions(-) create mode 100644 docs/manual/mod/mod_so.html diff --git a/docs/manual/mod/directives.html b/docs/manual/mod/directives.html index 009481dd80..980c04963f 100644 --- a/docs/manual/mod/directives.html +++ b/docs/manual/mod/directives.html @@ -120,9 +120,9 @@ of the terms used in their descriptions available.
  • <Limit>
  • Listen
  • ListenBacklog -
  • LoadFile (Unix) +
  • LoadFile (Unix)
  • LoadFile (Windows) -
  • LoadModule (Unix) +
  • LoadModule (Unix)
  • LoadModule (Windows)
  • <Location>
  • <LocationMatch> diff --git a/docs/manual/mod/index.html b/docs/manual/mod/index.html index 6ac99dba3a..123d662035 100644 --- a/docs/manual/mod/index.html +++ b/docs/manual/mod/index.html @@ -58,8 +58,8 @@ mod_usertrack
    MD5 authentication
    mod_dir
    Basic directory handling. -
    mod_dld -
    Start-time linking with the GNU libdld. +
    mod_dld Apache 1.2.* and earlier +
    Start-time linking with the GNU libdld. Replaced in Apache 1.3 by mod_so
    mod_dll
    Start-time module linking with Win32 DLLs.
    mod_env @@ -99,6 +99,8 @@ mod_log_config module in Apache 1.2 and up
    Powerful URI-to-filename mapping using regular expressions
    mod_setenvif Apache 1.3 and up
    Set environment variables based on client information +
    mod_so Apache 1.3 and up +
    Experimental support for loading modules at runtime on Unix
    mod_speling Apache 1.3 and up
    Automatically correct minor typos in URLs
    mod_status diff --git a/docs/manual/mod/mod_so.html b/docs/manual/mod/mod_so.html new file mode 100644 index 0000000000..9ceefee7d1 --- /dev/null +++ b/docs/manual/mod/mod_so.html @@ -0,0 +1,95 @@ + + + +Apache module mod_so + + + + + +

    Module mod_so

    + +This module is contained in the mod_so.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, on Unix systems. Win32 +systems use mod_dll instead. This module is +only available in Apache 1.3 and up. + +

    Summary

    + +This is an experimental module. On selected operating systems it can +be used to load modules into Apache at runtime, rather than requiring +a recompilation. + + +

    Directives

    + +
    + + +

    LoadFile

    + +Syntax: LoadFile filename filename ...
    +Context: server config
    +Status: Experimental
    +Module: mod_so

    + +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.


    + +

    LoadModule

    + +Syntax: LoadModule module filename
    +Context: server config
    +Status: Experimental
    +Module: mod_so

    + +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 +module in the file. Example: +

    +LoadModule status_module modules/mod_status.so +
    +loads the module in the modules subdirectory of the ServerRoot.

    + + + + + + -- 2.50.1