package ocamlnet

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type input_mode = [
  1. | `Standard
]
type input_state = [
  1. | `Received_body
  2. | `Received_header
  3. | `Receiving_body
  4. | `Receiving_header
  5. | `Start
]
type output_mode = [
  1. | `Standard
]
type output_state = [
  1. | `End
  2. | `Sending_body
  3. | `Sending_header
  4. | `Sending_part_body
  5. | `Sending_part_header
  6. | `Sent_body
  7. | `Sent_header
  8. | `Sent_part_body
  9. | `Sent_part_header
  10. | `Start
]
type protocol_version = Nethttp.protocol_version
type protocol_attribute = Nethttp.protocol_attribute
type protocol = Nethttp.protocol
type workaround = [
  1. | `Work_around_MSIE_Content_type_bug
  2. | `Work_around_backslash_bug
]
type cgi_config = {
  1. tmp_directory : string;
  2. tmp_prefix : string;
  3. permitted_http_methods : string list;
  4. permitted_input_content_types : string list;
  5. input_content_length_limit : int;
  6. workarounds : workaround list;
}
val default_config : cgi_config
val of_compat_config : cgi_config -> Netcgi.config
val to_compat_config : Netcgi.config -> cgi_config
class type cgi_environment = object ... end
val to_compat_environment : Netcgi.cgi_environment -> cgi_environment
val of_compat_environment : cgi_environment -> Netcgi.cgi_environment