File tree 3 files changed +5
-0
lines changed
mullvad-management-interface
3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -261,6 +261,7 @@ enum FeatureIndicator {
261
261
CUSTOM_MTU = 10 ;
262
262
CUSTOM_MSS_FIX = 11 ;
263
263
DAITA = 12 ;
264
+ DAITA_USE_ANYWHERE = 13 ;
264
265
}
265
266
266
267
enum ObfuscationType {
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ impl From<mullvad_types::features::FeatureIndicator> for proto::FeatureIndicator
17
17
mullvad_types:: features:: FeatureIndicator :: CustomMtu => CustomMtu ,
18
18
mullvad_types:: features:: FeatureIndicator :: CustomMssFix => CustomMssFix ,
19
19
mullvad_types:: features:: FeatureIndicator :: Daita => Daita ,
20
+ mullvad_types:: features:: FeatureIndicator :: DaitaUseAnywhere => DaitaUseAnywhere ,
20
21
}
21
22
}
22
23
}
@@ -37,6 +38,7 @@ impl From<proto::FeatureIndicator> for mullvad_types::features::FeatureIndicator
37
38
proto:: FeatureIndicator :: CustomMtu => Self :: CustomMtu ,
38
39
proto:: FeatureIndicator :: CustomMssFix => Self :: CustomMssFix ,
39
40
proto:: FeatureIndicator :: Daita => Self :: Daita ,
41
+ proto:: FeatureIndicator :: DaitaUseAnywhere => Self :: DaitaUseAnywhere ,
40
42
}
41
43
}
42
44
}
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ pub enum FeatureIndicator {
38
38
CustomMtu ,
39
39
CustomMssFix ,
40
40
Daita ,
41
+ DaitaUseAnywhere ,
41
42
}
42
43
43
44
impl std:: fmt:: Display for FeatureIndicator {
@@ -56,6 +57,7 @@ impl std::fmt::Display for FeatureIndicator {
56
57
FeatureIndicator :: CustomMtu => "Custom MTU" ,
57
58
FeatureIndicator :: CustomMssFix => "Custom MSS" ,
58
59
FeatureIndicator :: Daita => "DAITA" ,
60
+ FeatureIndicator :: DaitaUseAnywhere => "Use Anywhere (DAITA)" ,
59
61
} ;
60
62
write ! ( f, "{feature}" )
61
63
}
You can’t perform that action at this time.
0 commit comments