include Cohttp.Response
This contains the metadata for a HTTP/1.1 response header, including the encoding, headers, version, status code and whether to flush the connection after every body chunk (useful for server-side events and other long-lived connection protocols). The body is handled by the separate S module type, as it is dependent on the IO implementation.
include Cohttp.S.Response
type t = {encoding : Cohttp.Transfer.encoding; | Transfer encoding of this HTTP response |
headers : Cohttp.Header.t; | response HTTP headers |
version : Cohttp.Code.version; | (** HTTP version, usually 1.1 *) |
status : Cohttp.Code.status_code; | HTTP status code of the response |
flush : bool; |
}val flush : t -> boolval status : t -> Cohttp.Code.status_codeval version : t -> Cohttp.Code.versionval headers : t -> Cohttp.Header.tval encoding : t -> Cohttp.Transfer.encodingmodule Fields : sig ... endinclude Ppx_sexp_conv_lib.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> tval sexp_of_t : t -> Sexplib0.Sexp.tval make : ?version:Cohttp.Code.version -> ?status:Cohttp.Code.status_code -> ?flush:bool -> ?encoding:Cohttp.Transfer.encoding -> ?headers:Cohttp.Header.t -> unit -> tval pp_hum : Stdlib.Format.formatter -> t -> unitHuman-readable output, used by the toplevel printer
module Make : functor (IO : Cohttp.S.IO) -> Cohttp.S.Http_io with type t = t and module IO = IOFunctor to construct the IO-specific response handling function