module Server:sig..end
Operations for creating servers.
type t
A server.
val create : int -> (string -> LO.Message.data array -> unit) -> tCreate a server listening on given port with handler function taking as agument the path and messages received.
val recv : t -> unitRecive messages and pass them to the handler. This function is blocking until a message is received.