summaryrefslogtreecommitdiff
path: root/main/src/main/res/xml/vpn_behaviour.xml
blob: 106e90da192f04483bf30e7d68449cfebe00d88a (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
<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>