Skip to content

SSLState

[Source]

The state of an SSL session. A session starts in SSLHandshake and reaches SSLReady, SSLAuthFail, or SSLError from there. A ready session can still fail into SSLError later. Disposing a session puts it in SSLDisposed from any state, and it stays there.

type SSLState is
  (SSLHandshake val | SSLAuthFail val | SSLReady val | SSLError val | SSLDisposed val)

Type Alias For