package httpcats

  1. Overview
  2. Docs
A simple HTTP client / server using h1, h2, and miou

Install

dune-project
 Dependency

Authors

Maintainers

Sources

httpcats-0.3.1.tbz
sha256=e41ca6a32252e49ca44e749e7b41e148acdb1e46fc8fa08eb98eed66d1831a1d
sha512=7e736d5c0ecc2f1c63c39ce39b322cd88b85c9d50eda2021e20043b0c855e7d61107605434e14f7186d4b8488f8c1e1048058bce5c0b1195d5bb16b84999107c

doc/httpcats.core/Httpcats_core/index.html

Module Httpcats_coreSource

module Version = H1.Version
Sourcemodule Status = H2.Status
Sourcemodule Headers = H2.Headers
module Method = H2.Method
Sourcetype request = {
  1. meth : Method.t;
  2. target : string;
  3. headers : Headers.t;
}
Sourcetype response = {
  1. version : Version.t;
  2. status : Status.t;
  3. reason : string;
  4. headers : Headers.t;
}
Sourcetype error = [
  1. | `V1 of H1.Client_connection.error
  2. | `V2 of H2.Client_connection.error
  3. | `Protocol of string
  4. | `Msg of string
  5. | `Exn of exn
]
Sourcetype body =
  1. | String of string
  2. | Stream of string Seq.t
Sourcetype meta = (Ipaddr.t * int) * Tls.Core.epoch_data option
Sourcetype 'a handler = meta -> request -> response -> 'a -> string option -> 'a
Sourcemodule Server : sig ... end