2010-02-08 20:39:42 +00:00
|
|
|
/* Copyright (c) 2009, Nathan Freitas, Orbot/The Guardian Project - http://openideals.com/guardian */
|
2009-11-30 16:50:26 +00:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
|
|
|
package org.torproject.android;
|
|
|
|
|
|
|
|
public interface TorConstants {
|
|
|
|
|
2010-02-08 20:39:42 +00:00
|
|
|
public final static String TAG = "Orbot";
|
2010-07-23 11:10:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
public final static String PREFS_KEY = "OrbotPrefs";
|
|
|
|
public final static String PREFS_KEY_TORIFIED = "PrefTord";
|
2009-11-30 16:50:26 +00:00
|
|
|
|
2010-02-08 20:39:42 +00:00
|
|
|
public final static int FILE_WRITE_BUFFER_SIZE = 2048;
|
2009-11-30 16:50:26 +00:00
|
|
|
|
|
|
|
//path to check Tor against
|
2010-02-10 06:54:13 +00:00
|
|
|
public final static String URL_TOR_CHECK = "https://check.torproject.org";
|
2009-11-30 16:50:26 +00:00
|
|
|
|
|
|
|
|
2010-02-08 20:39:42 +00:00
|
|
|
public final static String NEWLINE = "\n";
|
2009-11-30 16:50:26 +00:00
|
|
|
|
2010-07-23 11:10:00 +00:00
|
|
|
/*
|
2010-02-08 20:39:42 +00:00
|
|
|
public final static String TORRC_DEFAULT =
|
2010-07-19 22:34:15 +00:00
|
|
|
"SocksPort 9050\nSocksListenAddress 127.0.0.1\nSafeSocks 1\nDNSPort 5400\nLog debug syslog\nDataDirectory /data/data/org.torproject.android/cache\n"
|
2010-02-10 06:54:13 +00:00
|
|
|
+ "ControlPort 9051\nCookieAuthentication 1\nRelayBandwidthRate 20 KBytes\nRelayBandwidthBurst 20 KBytes\nAutomapHostsOnResolve 1\nTransPort 9040\n";
|
2010-07-23 11:10:00 +00:00
|
|
|
*/
|
|
|
|
|
2010-02-08 20:39:42 +00:00
|
|
|
public final static String INTENT_TOR_SERVICE = "org.torproject.android.service.TOR_SERVICE";
|
|
|
|
|
|
|
|
public final static String HANDLER_TOR_MSG = "torServiceMsg";
|
|
|
|
|
|
|
|
public final static String PREF_BRIDGES_ENABLED = "pref_bridges_enabled";
|
|
|
|
public final static String PREF_BRIDGES_UPDATED = "pref_bridges_enabled";
|
|
|
|
public final static String PREF_BRIDGES_LIST = "pref_bridges_list";
|
2010-03-06 04:11:36 +00:00
|
|
|
public final static String PREF_OR = "pref_or";
|
|
|
|
public final static String PREF_OR_PORT = "pref_or_port";
|
2010-03-06 01:08:10 +00:00
|
|
|
public final static String PREF_OR_NICKNAME = "pref_or_nickname";
|
2010-03-06 04:46:53 +00:00
|
|
|
public final static String PREF_REACHABLE_ADDRESSES = "pref_reachable_addresses";
|
|
|
|
public final static String PREF_REACHABLE_ADDRESSES_PORTS = "pref_reachable_addresses_ports";
|
2010-02-24 05:09:24 +00:00
|
|
|
public final static String PREF_TRANSPARENT = "pref_transparent";
|
2010-07-28 04:43:58 +00:00
|
|
|
public final static String PREF_TRANSPARENT_ALL = "pref_transparent_all";
|
|
|
|
|
2011-10-28 04:31:08 +00:00
|
|
|
public final static String PREF_HAS_ROOT = "has_root";
|
2011-11-03 20:14:50 +00:00
|
|
|
public final static int RESULT_CLOSE_ALL = 0;
|
2010-02-24 05:09:24 +00:00
|
|
|
|
2012-01-13 01:58:21 +00:00
|
|
|
public final static String PREF_USE_SYSTEM_IPTABLES = "pref_use_sys_iptables";
|
2010-02-24 05:09:24 +00:00
|
|
|
|
2012-01-26 01:05:30 +00:00
|
|
|
public final static String PREF_PERSIST_NOTIFICATIONS = "pref_persistent_notifications";
|
|
|
|
|
2009-11-30 16:50:26 +00:00
|
|
|
}
|