Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Blocking Lwt functions to read and write from Cstruct buffers.
read fd t
reads data from the file descriptor fd
into the t
cstruct.
write fd t
writes data from the t
cstruct to the file descriptor fd
.
complete (read fd) t
fills t
with data from fd
.
complete (write fd) t
fully-writes t
to fd
.
sendto fd t flags sa
invokes Lwt_unix.sendto
on the t
cstruct.