FastCGI implementation in OCaml

more

Changed files
+17 -1
lib
+17 -1
lib/fastcgi.mli
···
This includes all the fundamental FastCGI protocol types. *)
include module type of Fastcgi_types
(** {1 Application Interface} *)
(** Application handler signatures.
···
(** Clear buffer contents. *)
val clear : t -> unit
end
-
end
···
This includes all the fundamental FastCGI protocol types. *)
include module type of Fastcgi_types
+
(** {1 Protocol Implementation} *)
+
+
(** Wire protocol parsing and serialization. *)
+
module Protocol = Fastcgi_protocol
+
+
(** {1 Role-Specific Implementations} *)
+
+
(** Responder role implementation. *)
+
module Responder = Fastcgi_responder
+
+
(** Authorizer role implementation. *)
+
module Authorizer = Fastcgi_authorizer
+
+
(** Filter role implementation. *)
+
module Filter = Fastcgi_filter
+
(** {1 Application Interface} *)
(** Application handler signatures.
···
(** Clear buffer contents. *)
val clear : t -> unit
end
+
end