summaryrefslogtreecommitdiff
path: root/main/src/main/res/xml/vpn_behaviour.xml
blob: 0f94e9bfac4fad09b5944a90ac908d27d68a41e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!--
  ~ Copyright (c) 2012-2014 Arne Schwabe
  ~ Distributed under the GNU GPL v2. For full terms see the file doc/LICENSE.txt
  -->

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
    android:title="Client behaviour">

    <CheckBoxPreference
        android:key="usePersistTun"
        android:summary="@string/persisttun_summary"
        android:title="@string/persistent_tun_title" />


    <PreferenceCategory android:title="@string/reconnection_settings">
        <ListPreference
            android:entries="@array/crm_entries"
            android:entryValues="@array/crm_values"
            android:key="connectretrymax"
            android:persistent="false"
            android:title="@string/connection_retries" />

        <EditTextPreference
            android:dialogMessage="@string/connectretrymessage"
            android:key="connectretry"
            android:persistent="false"
            android:title="@string/connectretrywait" />
    </PreferenceCategory>
</PreferenceScreen>