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.2.0.tbz
sha256=3587d8d1e297025340ab59b934acc2c96fabfc36ff60f07a7d64e7067521e631
sha512=8bb3be3ec6ff35e5ced00cd99d87c4a2f3941571cce90b54817de68374143a217b65ab1bd211a92414664a344fd41b61e1e92e908fcda900331cb14e5a2dd6f1

doc/httpcats.core/Httpcats_core/Server/index.html

Module Httpcats_core.ServerSource

Sourcetype error = [
  1. | `V1 of H1.Server_connection.error
  2. | `V2 of H2.Server_connection.error
  3. | `Protocol of string
]
Sourcetype request = {
  1. meth : Method.t;
  2. target : string;
  3. scheme : string;
  4. headers : Headers.t;
}
Sourcetype response = {
  1. status : Status.t;
  2. headers : Headers.t;
}
Sourcetype body = [
  1. | `V1 of H1.Body.Writer.t
  2. | `V2 of H2.Body.Writer.t
]
Sourcetype reqd = [
  1. | `V1 of H1.Reqd.t
  2. | `V2 of H2.Reqd.t
]
Sourcetype error_handler = [ `V1 | `V2 ] -> ?request:request -> error -> (Headers.t -> body) -> unit
Sourcetype 'a handler = 'a -> reqd -> unit