Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
S.ResponseSourcetype t = {encoding : Transfer.encoding;Transfer encoding of this HTTP response
*)headers : Header.t;response HTTP headers
*)version : Code.version;(** HTTP version, usually 1.1 *)
*)status : Code.status_code;HTTP status code of the response
*)flush : bool;}include Sexplib0.Sexpable.S with type t := tval t_of_sexp : Sexplib0.Sexp.t -> tval sexp_of_t : t -> Sexplib0.Sexp.tval encoding : t -> Transfer.encodingval version : t -> Code.versionval status : t -> Code.status_codeval flush : t -> boolval make :
?version:Code.version ->
?status:Code.status_code ->
?flush:bool ->
?encoding:Transfer.encoding ->
?headers:Header.t ->
unit ->
tThe response creates by make ~encoding ~headers () has an encoding value determined from the content of headers or if no proper header is present, using the value of encoding. Checked headers are "content-length", "content-range" and "transfer-encoding". The default value of encoding is chunked.