package letsencrypt-mirage

  1. Overview
  2. Docs
ACME implementation in OCaml for MirageOS

Install

dune-project
 Dependency

Authors

Maintainers

Sources

letsencrypt-2.1.1.tbz
sha256=8effc2c49161a9be28b82ec2bd83171e15519a0a5d94c3c8c0f60f00cb7b06db
sha512=ea2b8deabdbd51ec4c3e7124a8054be6bd68eabfe8767a2d34c0e8da1a0812b72bb606053424e6940cf93ef1a29eec9a1a60a7d76d9955d78f9aeaa658e935cc

doc/letsencrypt-mirage.http-server/LE_http_server/Make/Paf/index.html

Module Make.PafSource

Sourcetype stack = Stack.TCP.t
Sourcemodule TCP : sig ... end
Sourcemodule TLS : sig ... end
Sourceval tcp_protocol : (stack * ipaddr * int, TCP.flow) Mimic.protocol
Sourceval tcp_edn : (stack * ipaddr * int) Mimic.value
Sourceval tls_edn : ([ `host ] Domain_name.t option * Tls.Config.client * stack * ipaddr * int) Mimic.value
Sourceval tls_protocol : ([ `host ] Domain_name.t option * Tls.Config.client * stack * ipaddr * int, TLS.flow) Mimic.protocol
Sourcetype dst = ipaddr * int
Sourceval init : port:int -> stack -> t Lwt.t
Sourceval accept : t -> (TCP.flow, [> `Closed ]) result Lwt.t
Sourceval close : t -> unit Lwt.t
Sourceval http_service : ?config:??? -> error_handler:(dst -> H1.Server_connection.error_handler) -> (TCP.flow -> dst -> H1.Server_connection.request_handler) -> t Paf.service
Sourceval https_service : tls:Tls.Config.server -> ?config:??? -> error_handler:(dst -> H1.Server_connection.error_handler) -> (TLS.flow -> dst -> H1.Server_connection.request_handler) -> t Paf.service
Sourceval alpn_service : tls:Tls.Config.server -> ?config:??? -> (TLS.flow, dst) Alpn.server_handler -> t Paf.service
Sourceval serve : ?stop:??? -> 't Paf.service -> 't -> [ `Initialized of unit Lwt.t ]