Module Netsys_sasl_types

module Netsys_sasl_types: sig .. end
Possible channel bindings: This type is shared by SASL and GSSAPI providers.

type cb = [ `GSSAPI of string
| `None
| `SASL_none_but_advertise
| `SASL_require of string * string ]
Possible channel bindings: This type is shared by SASL and GSSAPI providers.
type server_state = [ `Auth_error of string | `Emit | `OK | `Restart of string | `Wait ] 
The state of the server session:
type client_state = [ `Auth_error of string | `Emit | `OK | `Stale | `Wait ] 
The state of the client session:
module type SASL_MECHANISM = sig .. end