Blocking Lwt functions to read and write from Cstruct buffers.
read fd t reads data from the file descriptor fd into the t cstruct.
read fd t
fd
t
write fd t writes data from the t cstruct to the file descriptor fd.
write fd t
complete (read fd) t fills t with data from fd.
complete (read fd) t
complete (write fd) t fully-writes t to fd.
complete (write fd) t
End_of_file
sendto fd t flags sa invokes Lwt_unix.sendto on the t cstruct.
sendto fd t flags sa
recvfrom fd t flags sa invokes Lwt_unix.recvfrom on the t cstruct.
recvfrom fd t flags sa