package cry

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type operation = [
  1. | `Both
  2. | `Read
  3. | `Write
]
type transport = {
  1. ssl_write : Stdlib.Bytes.t -> int -> int -> int;
  2. ssl_read : Stdlib.Bytes.t -> int -> int -> int;
  3. ssl_wait_for : operation -> float -> bool;
  4. ssl_close : unit -> unit;
}
val register : 'a -> unit