goodbye AIDL file... no longer using bound services

This commit is contained in:
Nathan Freitas 2014-10-24 01:14:39 -04:00
parent c9bb1c2890
commit f9e340b465
1 changed files with 0 additions and 63 deletions

View File

@ -1,63 +0,0 @@
package org.torproject.android.service;
/**
* an interface for calling on to a remote service
*/
interface ITorService {
/**
* Get a simple int status value for the state of Tor
**/
int getStatus();
/**
* check for exiting Tor process
**/
boolean checkAndInit ();
/**
* The profile value is the start/stop state for Tor
**/
void setProfile(int profile);
/**
* Set configuration
**/
boolean updateConfiguration (String name, String value, boolean saveToDisk);
/**
* Set configuration
**/
void processSettings();
/**
* Set configuration
**/
boolean saveConfiguration ();
/**
* Get current configuration value from torrc
*/
String getConfiguration (String name);
/**
* Get information
*/
String getInfo (String args);
/**
* change identity
*/
void newIdentity ();
String[] getStatusMessage ();
String[] getLog ();
long[] getBandwidth ();
boolean flushTransProxy ();
}