package cohttp

  1. Overview
  2. Docs
An OCaml library for HTTP clients and servers

Install

dune-project
 Dependency

Authors

Maintainers

Sources

cohttp-1.0.0.tbz
sha256=42b26ee6126ce0c607345e285a926641f5a9aa48b2854319b1d42c3782a704e0
md5=756f590576d4a60ce2382ef89274b44b

doc/cohttp/Cohttp/index.html

Module Cohttp

module Accept : sig ... end

Accept-Encoding HTTP header parsing and generation

module Auth : sig ... end

HTTP Authentication and Authorization header parsing and generation

module Body : sig ... end

HTTP request and response body handling

module Conf : sig ... end

Compile-time configuration variables

module Connection : sig ... end

Connection identifiers.

module Code : sig ... end

Functions for the HTTP Cookie and Set-Cookie header fields. Using the Set-Cookie header field, an HTTP server can pass name/value pairs and associated metadata (called cookies) to a user agent. When the user agent makes subsequent requests to the server, the user agent uses the metadata and other information to determine whether to return the name/value pairs in the Cookie header.

module Header : sig ... end

RFC 5988 ("Web Linking") and RFC 5987 ("Character Set and Language Encoding for Hypertext Transfer Protocol (HTTP) Header Field Parameters")

module Request : sig ... end

HTTP/1.1 request handling

module Response : sig ... end

HTTP/1.1 response handling

module S : sig ... end

Module type signatures for Cohttp components

module Transfer : sig ... end

Read and write the HTTP/1.1 transfer-encoding formats. Currently supported are chunked and content-length.