package cohttp

  1. Overview
  2. Docs
type t = {
  1. encoding : Transfer.encoding;
    (*

    Transfer encoding of this HTTP response

    *)
  2. headers : Header.t;
    (*

    response HTTP headers

    *)
  3. version : Code.version;
    (*

    (** HTTP version, usually 1.1 *)

    *)
  4. status : Code.status_code;
    (*

    HTTP status code of the response

    *)
  5. flush : bool;
}
val flush : t -> bool
val status : t -> Code.status_code
val version : t -> Code.version
val headers : t -> Header.t
val encoding : t -> Transfer.encoding
module Fields : sig ... end
include Ppx_sexp_conv_lib.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t
val make : ?version:Code.version -> ?status:Code.status_code -> ?flush:bool -> ?encoding:Transfer.encoding -> ?headers:Header.t -> unit -> t