[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r17877: {torctl} Add control port password 'setting' to TorUtil. (torctl/trunk/python/TorCtl)
Author: mikeperry
Date: 2009-01-04 10:27:25 -0500 (Sun, 04 Jan 2009)
New Revision: 17877
Modified:
torctl/trunk/python/TorCtl/TorUtil.py
Log:
Add control port password 'setting' to TorUtil.
Modified: torctl/trunk/python/TorCtl/TorUtil.py
===================================================================
--- torctl/trunk/python/TorCtl/TorUtil.py 2009-01-04 14:17:59 UTC (rev 17876)
+++ torctl/trunk/python/TorCtl/TorUtil.py 2009-01-04 15:27:25 UTC (rev 17877)
@@ -25,12 +25,13 @@
tor_port = 9050
tor_host = '127.0.0.1'
+control_port = 9051
+control_host = '127.0.0.1'
+control_pass = ""
+
meta_port = 9052
meta_host = '127.0.0.1'
-control_port = 9051
-control_host = '127.0.0.1'
-
class Enum:
""" Defines an ordered dense name-to-number 1-1 mapping """
def __init__(self, start, names):