aboutsummaryrefslogtreecommitdiffstats
path: root/torouterui/tor.py
blob: ef585c534ec4735ac1819ad3658ebc8f732de385 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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