@@ -8,6 +8,7 @@ import java.net.UnknownHostException
8
8
import kotlinx.coroutines.CoroutineDispatcher
9
9
import kotlinx.coroutines.Dispatchers
10
10
import kotlinx.coroutines.channels.Channel
11
+ import kotlinx.coroutines.delay
11
12
import kotlinx.coroutines.flow.MutableStateFlow
12
13
import kotlinx.coroutines.flow.SharingStarted
13
14
import kotlinx.coroutines.flow.combine
@@ -28,6 +29,8 @@ import net.mullvad.mullvadvpn.lib.model.ObfuscationMode
28
29
import net.mullvad.mullvadvpn.lib.model.Port
29
30
import net.mullvad.mullvadvpn.lib.model.QuantumResistantState
30
31
import net.mullvad.mullvadvpn.lib.model.Settings
32
+ import net.mullvad.mullvadvpn.lib.model.TunnelPreferencesRepository
33
+ import net.mullvad.mullvadvpn.lib.shared.ConnectionProxy
31
34
import net.mullvad.mullvadvpn.repository.AutoStartAndConnectOnBootRepository
32
35
import net.mullvad.mullvadvpn.repository.RelayListRepository
33
36
import net.mullvad.mullvadvpn.repository.SettingsRepository
@@ -51,6 +54,8 @@ class VpnSettingsViewModel(
51
54
private val systemVpnSettingsUseCase : SystemVpnSettingsAvailableUseCase ,
52
55
private val autoStartAndConnectOnBootRepository : AutoStartAndConnectOnBootRepository ,
53
56
private val wireguardConstraintsRepository : WireguardConstraintsRepository ,
57
+ private val tunnelPreferencesRepository : TunnelPreferencesRepository ,
58
+ private val connectionProxy : ConnectionProxy ,
54
59
private val dispatcher : CoroutineDispatcher = Dispatchers .IO ,
55
60
) : ViewModel() {
56
61
@@ -65,7 +70,8 @@ class VpnSettingsViewModel(
65
70
relayListRepository.portRanges,
66
71
customPort,
67
72
autoStartAndConnectOnBootRepository.autoStartAndConnectOnBoot,
68
- ) { settings, portRanges, customWgPort, autoStartAndConnectOnBoot ->
73
+ tunnelPreferencesRepository.preferencesFlow,
74
+ ) { settings, portRanges, customWgPort, autoStartAndConnectOnBoot, preferences ->
69
75
VpnSettingsViewModelState (
70
76
mtuValue = settings?.tunnelOptions?.wireguard?.mtu,
71
77
isLocalNetworkSharingEnabled = settings?.allowLan == true ,
@@ -85,6 +91,8 @@ class VpnSettingsViewModel(
85
91
systemVpnSettingsAvailable = systemVpnSettingsUseCase(),
86
92
autoStartAndConnectOnBoot = autoStartAndConnectOnBoot,
87
93
deviceIpVersion = settings?.getDeviceIpVersion() ? : Constraint .Any ,
94
+ ipv6Enabled = settings?.tunnelOptions?.genericOptions?.enableIpv6 == true ,
95
+ routeIpv6 = preferences.routeIpV6,
88
96
)
89
97
}
90
98
.stateIn(
@@ -253,6 +261,23 @@ class VpnSettingsViewModel(
253
261
}
254
262
}
255
263
264
+ fun setIpV6Enabled (enable : Boolean ) {
265
+ viewModelScope.launch(dispatcher) {
266
+ repository.setIpV6Enabled(enable).onLeft {
267
+ _uiSideEffect .send(VpnSettingsSideEffect .ShowToast .GenericError )
268
+ }
269
+ }
270
+ }
271
+
272
+ fun onToggleRouteIpv6Traffic (enable : Boolean ) {
273
+ viewModelScope.launch(dispatcher) {
274
+ tunnelPreferencesRepository.setRouteIpv6(enable)
275
+ connectionProxy.disconnect()
276
+ delay(1000L )
277
+ connectionProxy.connect()
278
+ }
279
+ }
280
+
256
281
private fun updateDefaultDnsOptionsViaRepository (contentBlockersOption : DefaultDnsOptions ) =
257
282
viewModelScope.launch(dispatcher) {
258
283
repository
0 commit comments