package cohttp
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=31130f68a9f0a5cd8d71b55f042456e6d35bf8b7ab6a71ab6d7bd7dbdb607b24
sha512=1b14571b8aef12ae51f94eb7e94a8fc6e26b64dffedd86f8f9c237479b980395a2424ca7a9ce3dc285608bce770170688e86b4ba6da82370ca5fe7a9649cd19f
doc/cohttp/Cohttp/Request/index.html
Module Cohttp.RequestSource
HTTP/1.1 request handling
This 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 S.Request with type t = Http.Request.t
type t = Http.Request.t = {headers : Header.t;(*HTTP request headers
*)meth : Code.meth;(*HTTP request method
*)resource : string;(*Request path and query
*)version : Code.version;(*HTTP version, usually 1.1
*)
}val make :
?meth:Code.meth ->
?version:Code.version ->
?encoding:Transfer.encoding ->
?headers:Header.t ->
?absolute_form:bool ->
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.
Human-readable output, used by the toplevel printer