aboutsummaryrefslogtreecommitdiffstats
path: root/torouterui/tor.py
diff options
context:
space:
mode:
Diffstat (limited to 'torouterui/tor.py')
-rw-r--r--torouterui/tor.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/torouterui/tor.py b/torouterui/tor.py
new file mode 100644
index 0000000..ef585c5
--- /dev/null
+++ b/torouterui/tor.py
@@ -0,0 +1,18 @@
+"""
+Helper code for interacting with Tor and modifying the Tor system
+configuration.
+"""
+
+
+def get_tor_status():
+ d = dict()
+ d['state'] = 'DISABLED'
+ return d
+
+
+def get_tor_settings():
+ return dict()
+
+
+def save_tor_settings():
+ pass