Onionr/src/netcontroller/torcontrol/togglenetwork.py

12 lines
297 B
Python
Raw Normal View History

from . import torcontroller
def enable_tor_network_connection():
with torcontroller.get_controller() as controller:
c.set_conf("DisableNetwork", 0)
def disable_tor_network_connection():
with torcontroller.get_controller() as controller:
c.set_conf("DisableNetwork", 1)