~ubuntu-branches/ubuntu/trusty/ocamlnet/trusty

« back to all changes in this revision

Viewing changes to src/netcgi2-plex/netcgi_plex.mli

  • Committer: Bazaar Package Importer
  • Author(s): Stéphane Glondu
  • Date: 2011-09-02 14:12:33 UTC
  • mfrom: (18.2.3 sid)
  • Revision ID: james.westby@ubuntu.com-20110902141233-zbj0ygxb92u6gy4z
Tags: 3.4-1
* New upstream release
  - add a new NetcgiRequire directive to ease dependency management
    (Closes: #637147)
  - remove patches that were applied upstream:
    + Added-missing-shebang-lines-in-example-shell-scripts
    + Try-also-ocamlc-for-POSIX-threads

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
(* $Id: netcgi_plex.mli 1008 2006-09-27 00:58:04Z gerd $ *)
 
1
(* $Id: netcgi_plex.mli 1243 2009-05-25 23:45:36Z gerd $ *)
2
2
 
3
3
(** {1 Netplex support for FastCGI, SCGI and AJP connectors} *)
4
4
 
13
13
      ?output_type:output_type ->
14
14
      ?arg_store:arg_store ->
15
15
      ?exn_handler:exn_handler ->
 
16
      ?configure:(Netplex_types.config_file -> 
 
17
                  Netplex_types.address ->
 
18
                    Netplex_types.processor_hooks) ->
16
19
      (Netplex_types.container -> cgi -> unit) ->
17
20
        Netplex_types.processor_factory
18
21
  (** Reads a Netplex configuration section like
89
92
    * @param arg_store Default: [`Automatic] for all arguments.
90
93
    * @param exn_handler See {!Netcgi.exn_handler}.  Default: delegate
91
94
    *      all exceptions to the default handler.
 
95
    * @param configure Parameters are the netplex configuration file
 
96
    *     and the address of the [processor] section. The configure
 
97
    *     function can look for additional parameters. It returns
 
98
    *     service hooks that are added to the resulting processor.
92
99
   *)
93
100
 
94
101