Parameters
module Flow : Mirage_flow.S
Signature
include Sigs.FLOW
with type +'a fiber = 'a Lwt.t
and type error = [ `Error of Flow.error | `Write_error of Flow.write_error ]
type +'a fiber = 'a Lwt.t
type error = [
| `Error of Flow.error
| `Write_error of Flow.write_error
]
val recv :
t ->
Cstruct.t ->
([ `End_of_flow | `Input of int ], error) Stdlib.result fiber
val send : t -> Cstruct.t -> (int, error) Stdlib.result fiber
val pp_error : error Fmt.t
val make : Flow.flow -> t