package obus

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type data = string
exception Auth_failure of string
type capability = [
  1. | `Unix_fd
]
val capabilities : capability list
type stream
val make_stream : recv:(unit -> string Lwt.t) -> send:(string -> unit Lwt.t) -> stream
val stream_of_channels : (Lwt_io.input_channel * Lwt_io.output_channel) -> stream
val stream_of_fd : Lwt_unix.file_descr -> stream
val max_line_length : int
module Client : sig ... end
module Server : sig ... end