1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
Source: ocaml-http
Section: ocaml
Priority: optional
Maintainer: Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org>
Build-Depends:
debhelper-compat (= 13),
dh-ocaml,
ocaml-nox,
camlp4,
ocaml-findlib,
libpcre-ocaml-dev,
libocamlnet-ocaml-dev
Standards-Version: 4.5.0
Rules-Requires-Root: no
Vcs-Git: https://salsa.debian.org/ocaml-team/ocaml-http.git
Vcs-Browser: https://salsa.debian.org/ocaml-team/ocaml-http
Homepage: https://github.com/sacerdot/ocaml-http
Package: libhttp-ocaml-dev
Architecture: any
Depends:
${ocaml:Depends},
${shlibs:Depends},
${misc:Depends}
Suggests: ocaml-findlib
Description: OCaml library for writing HTTP servers
OCaml HTTP is a library for the Objective Caml programming language,
used to build simple HTTP servers, largely inspired to Perl's
HTTP::Daemon module.
.
In order to implement an HTTP servers the programmer has to provide a
daemon specification which contains, among other parameters, a callback
function invoked by OCaml HTTP on well formed HTTP requests received.
HTTP responses could be sent over an out_channel connected with client
socket, accessible from the callback.
.
The library contains also facility functions that helps in creating
well formed HTTP responses and a tiny HTTP client.
|