2010-02-08 20:43:38 +00:00
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
2010-03-06 14:56:39 +00:00
|
|
|
<PreferenceCategory android:title="Transparent Proxying">
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="pref_transparent"
|
|
|
|
android:title="Transparent Proxying"
|
|
|
|
android:summary="Root Devices Only: Per App Torification"
|
|
|
|
android:enabled="true"/>
|
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
<PreferenceCategory android:title="Bridges">
|
2010-02-08 20:43:38 +00:00
|
|
|
|
|
|
|
<CheckBoxPreference android:defaultValue="false"
|
|
|
|
android:title="Use Bridges" android:key="pref_bridges_enabled"
|
|
|
|
android:summary="Enable alternate entrance nodes into the Tor Network"></CheckBoxPreference>
|
|
|
|
|
2010-05-08 04:55:37 +00:00
|
|
|
<!-- 5/8/2010 NF: Arma says this doesn't actually work, so commenting out for now
|
2010-02-08 20:43:38 +00:00
|
|
|
<CheckBoxPreference android:defaultValue="false"
|
2010-03-06 14:56:39 +00:00
|
|
|
android:title="Update from Authority" android:key="pref_bridges_update"
|
2010-02-08 20:43:38 +00:00
|
|
|
android:summary="Modify bridge list automatically"></CheckBoxPreference>
|
2010-05-08 04:55:37 +00:00
|
|
|
-->
|
|
|
|
|
2010-03-06 17:04:18 +00:00
|
|
|
<EditTextPreference android:key="pref_bridges_list"
|
2010-02-08 20:43:38 +00:00
|
|
|
android:title="Bridges"
|
2010-02-10 07:00:47 +00:00
|
|
|
android:summary="IP address and port of bridges"
|
2010-02-08 20:43:38 +00:00
|
|
|
android:dialogTitle="Enter Bridge Addresses"
|
|
|
|
/>
|
2010-03-06 14:56:39 +00:00
|
|
|
</PreferenceCategory>
|
2010-02-08 20:43:38 +00:00
|
|
|
|
2010-02-24 05:09:05 +00:00
|
|
|
|
|
|
|
|
2010-03-06 14:56:39 +00:00
|
|
|
<PreferenceCategory android:title="Relays">
|
2010-03-06 00:46:46 +00:00
|
|
|
<CheckBoxPreference android:key="pref_or"
|
2010-03-06 00:44:56 +00:00
|
|
|
android:defaultValue="false"
|
2010-02-08 20:43:38 +00:00
|
|
|
android:title="Relaying"
|
2010-03-08 07:01:11 +00:00
|
|
|
android:summary="Enable your device to be a non-exit relay"
|
2010-03-06 04:11:36 +00:00
|
|
|
android:enabled="true"
|
2010-02-08 20:43:38 +00:00
|
|
|
/>
|
|
|
|
|
2010-03-06 00:46:46 +00:00
|
|
|
<EditTextPreference android:key="pref_or_port"
|
2010-03-06 00:44:56 +00:00
|
|
|
android:defaultValue="9001"
|
|
|
|
android:title="Relay Port"
|
|
|
|
android:summary="Listening port for your Tor relay"
|
|
|
|
android:dialogTitle="Enter OR port"
|
|
|
|
/>
|
2010-03-06 01:07:19 +00:00
|
|
|
|
|
|
|
<EditTextPreference android:key="pref_or_nickname"
|
|
|
|
android:defaultValue="Orbot"
|
|
|
|
android:title="Relay nickname"
|
|
|
|
android:summary="The nickname for your Tor relay"
|
|
|
|
android:dialogTitle="Enter a custom relay nickname"
|
|
|
|
/>
|
|
|
|
|
2010-03-06 14:56:39 +00:00
|
|
|
</PreferenceCategory>
|
2010-02-24 05:09:05 +00:00
|
|
|
|
2010-03-06 04:46:53 +00:00
|
|
|
<PreferenceCategory android:title="ReachableAddresses">
|
2010-03-06 01:27:51 +00:00
|
|
|
<CheckBoxPreference
|
2010-03-06 04:46:53 +00:00
|
|
|
android:key="pref_reachable_addresses"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:title="ReachableAddresses"
|
2010-02-08 20:43:38 +00:00
|
|
|
android:summary="Run as a client behind a firewall with restrictive policies"
|
2010-03-06 14:56:39 +00:00
|
|
|
android:enabled="true"></CheckBoxPreference>
|
2010-02-08 20:43:38 +00:00
|
|
|
|
2010-03-06 04:46:53 +00:00
|
|
|
<EditTextPreference
|
|
|
|
android:key="pref_reachable_addresses_ports"
|
|
|
|
android:defaultValue="*:80,*:443"
|
2010-03-06 00:44:56 +00:00
|
|
|
android:title="Reachable ports"
|
|
|
|
android:summary="Ports reachable behind a restrictive firewall"
|
|
|
|
android:dialogTitle="Enter ports"
|
|
|
|
/>
|
2010-03-06 04:46:53 +00:00
|
|
|
</PreferenceCategory>
|
2010-03-06 00:44:56 +00:00
|
|
|
|
|
|
|
</PreferenceScreen>
|