Cohttp_lwtmodule type IO = S.IOmodule Request = Cohttp.Requestmodule Response = Cohttp.Responsemodule Connection : sig ... endmodule Connection_cache : sig ... endmodule Client : sig ... endThe Make functor glues together a Cohttp.S.IO implementation to send requests down a connection that is established by the Net module. The resulting module satisfies the Client module type.
module Server : sig ... endThe Make functor glues together a Cohttp.S.IO implementation to send requests down a connection that is established by the user. The resulting module satisfies the Server module type.
module Make_server = Server.Makemodule S : sig ... endPortable Lwt implementation of HTTP client and server, without depending on a particular I/O implementation. The various Make functors must be instantiated by an implementation that provides a concrete IO monad.
module Body : sig ... endmodule Private : sig ... end