Use constants for Tor network setting values.

This commit is contained in:
akwizgran
2017-03-27 10:26:10 +01:00
parent e682f31898
commit c167938b61
3 changed files with 14 additions and 3 deletions

View File

@@ -11,4 +11,8 @@ public interface TorConstants {
String PREF_TOR_NETWORK = "network";
String PREF_TOR_PORT = "port";
int PREF_TOR_NETWORK_NEVER = 0;
int PREF_TOR_NETWORK_WIFI = 1;
int PREF_TOR_NETWORK_ALWAYS = 2;
}