diff --git a/src/netcontroller/torcontrol/togglenetwork.py b/src/netcontroller/torcontrol/togglenetwork.py new file mode 100644 index 00000000..5a74cfea --- /dev/null +++ b/src/netcontroller/torcontrol/togglenetwork.py @@ -0,0 +1,11 @@ +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)