summaryrefslogtreecommitdiff
path: root/res/xml/vpn_obscure.xml
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2012-04-21 18:36:35 +0200
committerArne Schwabe <arne@rfc2549.org>2012-04-21 18:36:35 +0200
commit488a41cc60636298581c2b44b4706b259fc98a36 (patch)
treeba247a01a310ca7b68343e655e0d7b550597de46 /res/xml/vpn_obscure.xml
parent89369d1e8651514ad295b11e6e1f5ee00a402168 (diff)
wip
Diffstat (limited to 'res/xml/vpn_obscure.xml')
-rw-r--r--res/xml/vpn_obscure.xml42
1 files changed, 42 insertions, 0 deletions
diff --git a/res/xml/vpn_obscure.xml b/res/xml/vpn_obscure.xml
new file mode 100644
index 00000000..09b237f2
--- /dev/null
+++ b/res/xml/vpn_obscure.xml
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="utf-8"?>
+<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
+ android:title="Obscure Settings" >
+
+ <CheckBoxPreference
+ android:key="useRandomHostname"
+ android:summary="adds 6 random chars in front of hostname"
+ android:title="Random Host Prefix" />
+ <CheckBoxPreference
+ android:key="useFloat"
+ android:summary="Allows authenticated packets from any IP" />
+
+ <CheckBoxPreference android:key="setmtu" android:title="Set custom MTU" />
+ <EditTextPreference
+ android:dependency="setmtu"
+ android:defaultValue="1500"
+ android:title="MTU" />
+
+ <CheckBoxPreference
+ android:key="useBWShaping"
+ android:title="Use bandwidth shaping" />
+
+ <EditTextPreference
+ android:key="shaperLimit"
+ android:title="Bandwidth in byte/s" />
+
+ <CheckBoxPreference
+ android:defaultValue="true"
+ android:key="enableReplayProtection"
+ android:title="Replay Protection" />
+ <CheckBoxPreference
+ android:summary="Specify custom options. Use with care!"
+ android:title="Enable Custom Options"
+ android:key="enableCustomOptions"/>
+
+ <EditTextPreference
+ android:dependency="enableCustomOptions"
+ android:dialogMessage="@string/custom_option_warning" />
+ android:key="customOptions"
+ android:title="Custom Options" />
+
+</PreferenceScreen> \ No newline at end of file