package cohttp

  1. Overview
  2. Docs

Module Cohttp.ResponseSource

HTTP/1.1 response handling

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.

The interface exposes a fieldslib interface which provides individual accessor functions for each of the records below. It also provides sexp serializers to convert to-and-from an Core.Std.Sexp.t.

include S.Response
Sourcetype 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;
}
Sourceval flush : t -> bool
Sourceval status : t -> Code.status_code
Sourceval version : t -> Code.version
Sourceval headers : t -> Header.t
Sourceval encoding : t -> Transfer.encoding
Sourcemodule Fields : sig ... end
include Ppx_sexp_conv_lib.Sexpable.S with type t := t
Sourceval t_of_sexp : Sexplib0.Sexp.t -> t
Sourceval sexp_of_t : t -> Sexplib0.Sexp.t
Sourceval make : ?version:Code.version -> ?status:Code.status_code -> ?flush:bool -> ?encoding:Transfer.encoding -> ?headers:Header.t -> unit -> t
Sourceval pp_hum : Format.formatter -> t -> unit

Human-readable output, used by the toplevel printer

Sourcemodule Make (IO : S.IO) : S.Http_io with type t = t and module IO = IO

Functor to construct the IO-specific response handling function

OCaml

Innovation. Community. Security.