module Socket: sig end
The sockets offered by this module are comparable.
Every send message is read as a whole. (They are not divided and do not concatenate).
Operations provided by this module should not be mixed with the ones
provided by Tcp
type
t
val create : Tcp.socket -> t
Tcp.socket
.val send : t -> string -> unit
send socket message
sends the given message
val queue : t -> string -> unit
queue socket message
adds the given message
to send queue of socket
val flush : t -> unit
flush socket
sends whole send queue of socket
val recv : t -> string list
recv socket message
returns a list of messages received.
(max 1 per call)val force_recv : t -> string
val destroy : t -> unit
destroy socket
closes the socket and deletes its buffer at all