#[repr(u32)]pub enum StatusMinor {
Show 30 variants
Unset = 0,
CfgError = 1,
CfgOk = 2,
CfgInlineMissing = 3,
CfgRequireUser = 4,
ConnInit = 5,
ConnConnecting = 6,
ConnConnected = 7,
ConnDisconnecting = 8,
ConnDisconnected = 9,
ConnFailed = 10,
ConnAuthFailed = 11,
ConnReconnecting = 12,
ConnPausing = 13,
ConnPaused = 14,
ConnResuming = 15,
ConnDone = 16,
SessNew = 17,
SessBackendCompleted = 18,
SessRemoved = 19,
SessAuthUserpass = 20,
SessAuthChallenge = 21,
SessAuthUrl = 22,
PKCS11Sign = 23,
PKCS11Encrypt = 24,
PKCS11Decrypt = 25,
PKCS11Verify = 26,
ProcStarted = 27,
ProcStopped = 28,
ProcKilled = 29,
}
Expand description
Status Minor
Source: openvpn3-linux/src/dbus/constants.hpp
Variants§
Unset = 0
An invalid result code, used for initialization
CfgError = 1
Failed parsing configuration
CfgOk = 2
Configuration file parsed successfully
CfgInlineMissing = 3
Some embedded (inline) files are missing
CfgRequireUser = 4
Require input from user
ConnInit = 5
Client connection initialized, ready to connect
ConnConnecting = 6
Client started connecting
ConnConnected = 7
Client have connected successfully
ConnDisconnecting = 8
Client started disconnect process
ConnDisconnected = 9
Client completed disconnecting
ConnFailed = 10
Client connection failed, disconnected
ConnAuthFailed = 11
Client authentication failed, disconnected
ConnReconnecting = 12
Client needed to reconnect
ConnPausing = 13
Client started to pause the connection
ConnPaused = 14
Client connection is paused
ConnResuming = 15
Client connection is resuming
ConnDone = 16
Client connection process have completed and exited successfully
SessNew = 17
New session object created
SessBackendCompleted = 18
Backend session object have completed its task
SessRemoved = 19
Session object removed
SessAuthUserpass = 20
User/password authentication needed
SessAuthChallenge = 21
Challenge/response authentication needed
SessAuthUrl = 22
Authentication needed via external URL
PKCS11Sign = 23
PKCS#11 sign operation required
PKCS11Encrypt = 24
PKCS#11 encryption operation required
PKCS11Decrypt = 25
PKCS#11 decryption operation required
PKCS11Verify = 26
PKCS#11 verification operation required
ProcStarted = 27
Successfully started a new process
ProcStopped = 28
A process of ours stopped as expected
ProcKilled = 29
A process of ours stopped unexpectedly
Trait Implementations§
Source§impl Clone for StatusMinor
impl Clone for StatusMinor
Source§fn clone(&self) -> StatusMinor
fn clone(&self) -> StatusMinor
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more