mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-23 02:00:20 +07:00
10 lines
143 B
Kotlin
10 lines
143 B
Kotlin
package org.amnezia.vpn.protocol
|
|
|
|
enum class ProtocolState {
|
|
CONNECTED,
|
|
CONNECTING,
|
|
DISCONNECTED,
|
|
DISCONNECTING,
|
|
UNKNOWN
|
|
}
|