Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Cohttp_lwt_unix.RequestSourceinclude module type of struct include Cohttp.Request endThis contains the metadata for a HTTP/1.1 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.Requesttype t = Cohttp.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
*)encoding : Cohttp.Transfer.encoding;transfer encoding of this HTTP request
*)}val make :
?meth:Cohttp.Code.meth ->
?version:Cohttp.Code.version ->
?encoding:Cohttp.Transfer.encoding ->
?headers:Cohttp.Header.t ->
Uri.t ->
tReturn true whether the connection should be reused
val make_for_client :
?headers:Cohttp.Header.t ->
?chunked:bool ->
?body_length:int64 ->
Cohttp.Code.meth ->
Uri.t ->
tHuman-readable output, used by the toplevel printer
Functor to construct the IO-specific HTTP request handling functions
include sig ... end