* Add Quick Settings tile - Add multi-client support to AmneziaVpnService - Make AmneziaActivity permanently connected to AmneziaVpnService while it is running - Refactor processing of connection state changes on qt side - Add VpnState DataStore - Add check if AmneziaVpnService is running * Add tile reset when the server is removed from the application
11 lines
249 B
Kotlin
11 lines
249 B
Kotlin
package org.amnezia.vpn.protocol
|
|
|
|
// keep synchronized with client/platforms/android/android_controller.h ConnectionState
|
|
enum class ProtocolState {
|
|
DISCONNECTED,
|
|
CONNECTED,
|
|
CONNECTING,
|
|
DISCONNECTING,
|
|
RECONNECTING,
|
|
UNKNOWN
|
|
}
|