[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[or-cvs] ship tor-control.py in the tarball



Update of /home/or/cvsroot/contrib
In directory moria.mit.edu:/home2/arma/work/onion/cvs/contrib

Modified Files:
	Makefile.am tor-control.py 
Log Message:
ship tor-control.py in the tarball


Index: Makefile.am
===================================================================
RCS file: /home/or/cvsroot/contrib/Makefile.am,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- Makefile.am	4 Nov 2004 15:17:22 -0000	1.10
+++ Makefile.am	9 Nov 2004 01:34:18 -0000	1.11
@@ -1,9 +1,9 @@
 confdir = $(sysconfdir)/tor
 
-EXTRA_DIST = tor-tsocks.conf torify.1
+EXTRA_DIST = tor-tsocks.conf torify.1 tor-control.py
 
 conf_DATA = tor-tsocks.conf
 
-bin_SCRIPTS = torify
+bin_SCRIPTS = torify tor-control.py
 
 man_MANS = torify.1

Index: tor-control.py
===================================================================
RCS file: /home/or/cvsroot/contrib/tor-control.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- tor-control.py	7 Nov 2004 22:08:20 -0000	1.1
+++ tor-control.py	9 Nov 2004 01:34:18 -0000	1.2
@@ -10,7 +10,7 @@
 MSG_TYPE_AUTH    = 0x0007
 
 def parseHostAndPort(h):
-    host, port = "localhost", 9050
+    host, port = "localhost", 9051
     if ":" in h:
         i = h.index(":")
         host = h[:i]