package resp-server

  1. Overview
  2. Docs

Module Resp_serverSource

Sourcemodule type BACKEND = sig ... end

BACKEND defines the minimum needed interface to create a new RESP server

Sourcemodule type AUTH = sig ... end

AUTH defines the interface for authenticating a client

Sourcemodule type SERVER = sig ... end

SERVER defines the interface for a server

Sourcemodule Auth : sig ... end

General authentication modes

Sourcemodule Make (A : AUTH) (D : BACKEND) : SERVER with module Backend = D and module Auth = A

Construct a new SERVER with given authentication mode and backend

OCaml

Innovation. Community. Security.