Lo.ServerOperations for creating servers.
val create : int -> (string -> Message.data array -> unit) -> tCreate a server listening on given port with handler function taking as argument the path and messages received.
val recv : t -> unitReceive messages and pass them to the handler. This function is blocking until a message is received.
val stop : t -> unitStop the server. No operation on this server should be performed afterward (otherwise, the exception Stopped is raised).