package tcpip

  1. Overview
  2. Docs
type error = [
  1. | Tcpip.Tcp.error
  2. | `Exn of exn
]
type write_error = [
  1. | Tcpip.Tcp.write_error
  2. | `Exn of exn
]
val pp_error : Stdlib.Format.formatter -> [< `Exn of exn | `Refused | `Timeout ] -> unit
val pp_write_error : Stdlib.Format.formatter -> [< `Closed | `Exn of exn | `Refused | `Timeout ] -> unit
val ignore_canceled : exn -> unit Lwt.t
val disconnect : 'a -> unit Lwt.t
val read : Lwt_unix.file_descr -> ([> `Data of Cstruct.t | `Eof ], [> `Exn of exn ]) Stdlib.result Lwt.t
val write : Lwt_unix.file_descr -> Cstruct.t -> (unit, [> `Closed | `Exn of exn ]) Stdlib.result Lwt.t
val writev : Lwt_unix.file_descr -> Cstruct.t list -> (unit, [> `Closed | `Exn of exn ]) Stdlib.result Lwt.t
val write_nodelay : Lwt_unix.file_descr -> Cstruct.t -> (unit, [> `Closed | `Exn of exn ]) Stdlib.result Lwt.t
val writev_nodelay : Lwt_unix.file_descr -> Cstruct.t list -> (unit, [> `Closed | `Exn of exn ]) Stdlib.result Lwt.t
val close : Lwt_unix.file_descr -> unit Lwt.t
val input : 'a -> src:'b -> dst:'c -> 'd -> unit Lwt.t