Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type 'body t = {
meth : Meth.t;
host : string;
headers : Headers.t;
path : string;
path_components : string list;
query : (string * string) list;
body : 'body;
}
A request with method, path, host, headers, and a body, sent by a client.
The body is polymorphic because the request goes through several transformations. First it has no body, as only the request and headers are read; then it has a stream body; then the body might be entirely read as a string via read_body_full
.
The field query
was added
the query parameters in "?foo=bar,x=y"
The field path_components
is the part of the path that precedes query
and is split on "/"
and was added
val pp : Format.formatter -> string t -> unit
Pretty print the request and its body
val pp_ : Format.formatter -> _ t -> unit
Pretty print the request without its body
val get_header : ?f:(string -> string) -> _ t -> string -> string option
val get_header_int : _ t -> string -> int option
val host : _ t -> string
Host field of the request. It also appears in the headers.
val path : _ t -> string
Request path.
val body : 'b t -> 'b
Request body, possibly empty.
val limit_body_size : max_size:int -> byte_stream t -> byte_stream t
Limit the body size to max_size
bytes, or return a 413
error.
val read_body_full : byte_stream t -> string t
Read the whole body into a string. Potentially blocking.