mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
mirror repository of the tor core protocol in case of issues
474c60b743
1) Surround all constants by (parens), whether we'll be using them in a denominator or not. 2) Express all time periods as products (24*60*60), not as multiplied-out constants (86400). 3) Comments like "(60*60) /* one hour */" are as pointless as comments like "c = a + b; /* set c to the sum of a and b */". Remove them. 4) All time periods should be #defined constants, not given inline. 5) All time periods should have doxygen comments. 6) All time periods, unless specified, are in seconds. It's not necessary to say so. To summarize, the old (lack of) style would allow: #define FOO_RETRY_INTERVAL 60*60 /* one hour (seconds) */ next_try = now + 3600; The new style is: /** How often do we reattempt foo? */ #define FOO_RETRY_INTERVAL (60*60) next_try = now + RETRY_INTERVAL; svn:r6142 |
||
---|---|---|
contrib | ||
debian | ||
doc | ||
src | ||
Win32Build | ||
.cvsignore | ||
AUTHORS | ||
autogen.sh | ||
ChangeLog | ||
configure.in | ||
Doxyfile | ||
INSTALL | ||
LICENSE | ||
Makefile.am | ||
README | ||
tor.spec.in |
'tor' is an implementation of The Onion Routing system, as described in a bit more detail at http://www.onion-router.net/. You can read list archives, and subscribe to the mailing list, at http://archives.seul.org/or/dev/. Is your question in the FAQ? Should it be? ************************************************************************** See the INSTALL file for a quickstart. That is all you will probably need. ************************************************************************** ************************************************************************** You only need to look beyond this point if the quickstart in the INSTALL doesn't work for you. ************************************************************************** Do you want to run a tor server? See http://tor.eff.org/doc/tor-doc.html#server Do you want to run a hidden service? See http://tor.eff.org/doc/tor-doc.html#hidden-service Configuring tsocks: If you want to use Tor for protocols that can't use Privoxy, or with applications that are not socksified, then download tsocks (tsocks.sourceforge.net) and configure it to talk to localhost:9050 as a socks4 server. My /etc/tsocks.conf simply has: server_port = 9050 server = 127.0.0.1 (I had to "cd /usr/lib; ln -s /lib/libtsocks.so" to get the tsocks library working after install, since my libpath didn't include /lib.) Then you can do "tsocks ssh arma@moria.mit.edu". But note that if ssh is suid root, you either need to do this as root, or cp a local version of ssh that isn't suid. (On Windows, you may want to look at the Hummingbird SOCKS client, or at SocksCap, instead.)