diff options
author | Roger Dingledine <arma@torproject.org> | 2004-11-09 01:34:18 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-11-09 01:34:18 +0000 |
commit | 10ddf2b47fd2b36e50fdd82ca3079c0b9aaca46a (patch) | |
tree | fd6d7de250b029cd8b3136cb34c33e7acf40d6dc /contrib/tor-control.py | |
parent | 8c7b2ff7eda913e8c09d5dfc7d522dd8725810bb (diff) | |
download | tor-10ddf2b47fd2b36e50fdd82ca3079c0b9aaca46a.tar.gz tor-10ddf2b47fd2b36e50fdd82ca3079c0b9aaca46a.zip |
ship tor-control.py in the tarball
svn:r2713
Diffstat (limited to 'contrib/tor-control.py')
-rwxr-xr-x | contrib/tor-control.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/tor-control.py b/contrib/tor-control.py index d3efc78e8c..e11d98e1c9 100755 --- a/contrib/tor-control.py +++ b/contrib/tor-control.py @@ -10,7 +10,7 @@ MSG_TYPE_GETCONF = 0x0003 MSG_TYPE_AUTH = 0x0007 def parseHostAndPort(h): - host, port = "localhost", 9050 + host, port = "localhost", 9051 if ":" in h: i = h.index(":") host = h[:i] |