package letsencrypt-mirage

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

Install

dune-project
 Dependency

Authors

Maintainers

Sources

letsencrypt-2.0.0.tbz
sha256=9d0d4a3c4d1793137933e645945c262dc6cdcaff8ad6f6630c30ec900423d1c3
sha512=dda4c7cd00ea700aea038bd3245ae51300cf51a1dd56f3afc3928d6f29a680a8a3fa367fa7aef7c6cb1883bb6b235287c12a9263af14be75ba5e4367db17895a

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

Module Make.PafSource

Sourcetype stack = Stack.TCP.t
Sourcetype ipaddr = Stack.TCP.ipaddr
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 t = Paf_mirage.Make(Stack.TCP).t
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:H1.Config.t -> 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:H1.Config.t -> 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:(H1.Config.t * H2.Config.t) -> (TLS.flow, dst) Alpn.server_handler -> t Paf.service
Sourceval serve : ?stop:Lwt_switch.t -> 't Paf.service -> 't -> [ `Initialized of unit Lwt.t ]