summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--mullvad-types/src/states.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/mullvad-types/src/states.rs b/mullvad-types/src/states.rs
index a5bb8a8b59..e7f7467660 100644
--- a/mullvad-types/src/states.rs
+++ b/mullvad-types/src/states.rs
@@ -1,4 +1,5 @@
use serde::{Deserialize, Serialize};
+use talpid_types::tunnel::TunnelStateTransition;
/// Represents the state the client strives towards.
/// When in `Secured`, the client should keep the computer from leaking and try to
@@ -9,3 +10,6 @@ pub enum TargetState {
Unsecured,
Secured,
}
+
+/// Temporary alias used to migrate the usages.
+pub type TunnelState = TunnelStateTransition;