Cohttp_lwt_unix.Requestinclude module type of struct include Cohttp.Request endThis contains the metadata for a HTTP/1.x request header, including the headers, version, meth and uri. The body is handled by the separate S module type, as it is dependent on the IO implementation.
The interface exposes a fieldslib interface which provides individual accessor functions for each of the records below. It also provides sexp serializers to convert to-and-from an Core.Std.Sexp.t.
include Cohttp.S.Request with type t = Http.Request.ttype t = Http.Request.t = {headers : Cohttp.Header.t;HTTP request headers
*)meth : Cohttp.Code.meth;HTTP request method
*)resource : string;Request path and query
*)version : Cohttp.Code.version;HTTP version, usually 1.1
*)}val headers : t -> Cohttp.Header.tval meth : t -> Cohttp.Code.methval resource : t -> stringval version : t -> Cohttp.Code.versionval encoding : t -> Cohttp.Transfer.encodingval make :
?meth:Cohttp.Code.meth ->
?version:Cohttp.Code.version ->
?encoding:Cohttp.Transfer.encoding ->
?headers:Cohttp.Header.t ->
Uri.t ->
tmake () is a value of t. The default values for the request, if not specified, are: status is `Ok, version is `HTTP_1_1, flush is false and headers is Header.empty. The request encoding value is determined via the Header.get_transfer_encoding function and, if not found, uses the default value Transfer.Fixed 0.
val is_keep_alive : t -> boolReturn true whether the connection should be reused
val uri : t -> Uri.tval make_for_client :
?headers:Cohttp.Header.t ->
?chunked:bool ->
?body_length:int64 ->
Cohttp.Code.meth ->
Uri.t ->
tval has_body : t -> [ `No | `Unknown | `Yes ]val pp_hum : Stdlib.Format.formatter -> t -> unitHuman-readable output, used by the toplevel printer
module Make = Cohttp.Request.Makemodule Private = Cohttp.Request.Privateinclude sig ... endmodule IO : sig ... endval read_body_chunk : reader -> Cohttp.Transfer.chunk IO.t