Skip to content

Commit

Permalink
config: switch on MPTCP by default
Browse files Browse the repository at this point in the history
Useful for our tests.

Issue: RESEARCH-46 (android libconvert)
Signed-off-by: Matthieu Baerts <[email protected]>
Change-Id: I68ebbbb9d0dc456b192eead711da31865af27ba3
  • Loading branch information
matttbe committed Jun 17, 2021
1 parent 3d78108 commit 4b67749
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ object DataStore : OnPreferenceDataStoreChangeListener {
val directBootAware: Boolean get() = Core.directBootSupported && canToggleLocked
val tcpFastOpen: Boolean get() = TcpFastOpen.sendEnabled && DataStore.publicStore.getBoolean(Key.tfo, true)
val converter: Boolean get() = publicStore.getBoolean(Key.converter, true)
val mptcp: Boolean get() = publicStore.getBoolean(Key.mptcp, false)
val mptcp: Boolean get() = publicStore.getBoolean(Key.mptcp, true)
val serviceMode get() = publicStore.getString(Key.serviceMode) ?: Key.modeVpn

/**
Expand Down

0 comments on commit 4b67749

Please sign in to comment.