package cohttp
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
An OCaml library for HTTP clients and servers
Install
dune-project
Dependency
Authors
Maintainers
Sources
cohttp-2.5.8.tbz
sha256=2722477d1f5bb09e841debc125c30ff44f1b20cf8894b68cb48f2b6de092d25a
sha512=ce934a24c0e1eaf5dc674927b45277d461a13757d4c165a4a11811f9eb7b11b78b4560792ca430734d4e3a5b8791eee887d4eab2a0e9e30aa4a5864e833dd768
doc/cohttp/Cohttp/Response/index.html
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
Source
type t = {encoding : Transfer.encoding;(*Transfer encoding of this HTTP response
*)headers : Header.t;(*response HTTP headers
*)version : Code.version;(*(** HTTP version, usually 1.1 *)
*)status : Code.status_code;(*HTTP status code of the response
*)flush : bool;
}Source
val make :
?version:Code.version ->
?status:Code.status_code ->
?flush:bool ->
?encoding:Transfer.encoding ->
?headers:Header.t ->
unit ->
tHuman-readable output, used by the toplevel printer
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>