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

« back to all changes in this revision

Viewing changes to src/nethttpd/nethttpd_util.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: nethttpd_util.mli 1410 2010-02-14 19:44:28Z gerd $ *)
 
2
 
 
3
(** Utility functions *)
 
4
 
 
5
open Nethttpd_types
 
6
 
 
7
val std_error_response : error_response_params -> string
 
8
  (** Returns the HTML text of the standard error response *)
 
9
 
 
10
val std_error_log_string : request_info -> string -> string
 
11
  (** Returns a log line for error logging *)
 
12
 
 
13
val std_access_log_string : full_info -> string
 
14
  (** Returns a log line for access logging *)
 
15
 
 
16
val std_debug_access_log_string : full_info -> string
 
17
  (** Returns a log string for extended access logging (multi-line) *)
 
18