added togglenetwork module in torcontrol
parent
a9d0524ccc
commit
a0ae62d0a3
|
@ -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)
|
Loading…
Reference in New Issue