S.Request
type t = {
headers : Header.t;
HTTP request headers
*)meth : Code.meth;
HTTP request method
*)scheme : string option;
URI scheme (http or https)
*)resource : string;
Request path and query
*)version : Code.version;
HTTP version, usually 1.1
*)encoding : Transfer.encoding;
}
val scheme : t -> string option
val resource : t -> string
val version : t -> Code.version
val encoding : t -> Transfer.encoding
val make :
?meth:Code.meth ->
?version:Code.version ->
?encoding:Transfer.encoding ->
?headers:Header.t ->
Uri.t ->
t
make ()
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 -> bool
Return true whether the connection should be reused
val uri : t -> Uri.t