diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-05-18 00:06:49 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-05-18 00:06:49 +0200 |
commit | 7ad69e645000fc66951a79104b0ce5ac3478b9f3 (patch) | |
tree | abc5069ab0559e074436fcb58f5ac5bb6e7fc6ed /res/xml/vpn_routing.xml | |
parent | 39e94d54313cf140929339a9f2613d79cbf734b0 (diff) |
- Make Ipv6 support complete (minus tun-ipv6 warning)
- Implement byte counter support in the log window
- Fix spelling of secret (closes issue #22)
- Replace "quot; with ", no idea what went wrong there (closes issue #21)
Diffstat (limited to 'res/xml/vpn_routing.xml')
-rw-r--r-- | res/xml/vpn_routing.xml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/res/xml/vpn_routing.xml b/res/xml/vpn_routing.xml new file mode 100644 index 00000000..ce19a500 --- /dev/null +++ b/res/xml/vpn_routing.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="utf-8"?> +<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" > + + <CheckBoxPreference + android:key="routenopull" + android:summary="@string/ignore_routes_summary" + android:title="@string/ignored_pushed_routes" /> + + <PreferenceCategory android:title="@string/ipv4" > + <CheckBoxPreference + android:disableDependentsState="true" + android:key="useDefaultRoute" + android:summary="@string/default_route_summary" + android:title="@string/use_default_title" /> + + <EditTextPreference + android:dependency="useDefaultRoute" + android:dialogMessage="@string/custom_route_message" + android:key="customRoutes" + android:title="@string/custom_routes_title" /> + </PreferenceCategory> + <PreferenceCategory android:title="@string/ipv6" > + <CheckBoxPreference + android:disableDependentsState="true" + android:key="useDefaultRoutev6" + android:summary="@string/default_route_summary" + android:title="@string/use_default_title" /> + + <EditTextPreference + android:dependency="useDefaultRoutev6" + android:dialogMessage="@string/custom_route_message" + android:key="customRoutesv6" + android:title="@string/custom_routes_title" /> + </PreferenceCategory> + +</PreferenceScreen>
\ No newline at end of file |