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