You can search for identifiers within the package.
in-package search v0.2.0
module S : S
type flow =
| TLS of Tls_mirage.Make(S.Flow).flow
| Clear of S.flow
include S with type t = S.t and type flow := flow
type t = S.t
The type for handlers.
module Flow : Mirage_flow.S with type flow = flow
The type for flows.
val connect : t -> client -> flow Lwt.t
Connect a conduit using client configuration.
val listen : t -> server -> (flow -> unit Lwt.t) -> unit Lwt.t
Listen to a conduit using a server configuration.