aboutsummaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2014-08-15Merge remote-tracking branch 'origin/maint-0.2.5'Nick Mathewson
2014-08-15Some documentation fixes for #12864.George Kadianakis
2014-08-15Documentation fix on arguments to CookieAuthFileGroupReadableNick Mathewson
We don't actually allow a group name, but the documentation implied that we did.
2014-08-15Restore functionality for CookieAuthFileGroupReadable.Nick Mathewson
When we merged the cookieauthfile creation logic in 33c3e60a37, we accidentally took out this feature. Fixes bug 12864, bugfix on 0.2.5.1-alpha. Also adds an ExtORPortCookieAuthFileGroupReadable, since there's no reason not to.
2014-08-13Merge remote-tracking branch 'origin/maint-0.2.5'Nick Mathewson
2014-08-13Merge remote-tracking branch 'origin/maint-0.2.4' into maint-0.2.5Nick Mathewson
2014-08-09fix extra words in man pageRoger Dingledine
2014-07-25Implement proposal 221: Stop sending CREATE_FASTNick Mathewson
This makes FastFirstHopPK an AUTOBOOL; makes the default "auto"; and makes the behavior of "auto" be "look at the consensus."
2014-07-24Merge branch 'maint-0.2.5'Roger Dingledine
2014-07-24Merge branch 'maint-0.2.4' into maint-0.2.5Roger Dingledine
2014-07-24update manpage for numentryguards / numdirectoryguardsRoger Dingledine
2014-07-16Clarify TruncateLogFile manpage entryNick Mathewson
2014-07-16Add an option to overwrite logsArlo Breault
* Issue #5583
2014-07-16Add stanza on lcov coverage targetKevin Murray
Adds a note about using `make coverage-html` to generate coverage reports. Signed-off-by: Kevin Murray <spam@kdmurray.id.au>
2014-06-21logic mixup, noticed by alphawolfRoger Dingledine
2014-06-16manpage: Move more authority-only options into the authority sectionNick Mathewson
I don't know whether we missed these or misclassified them when we first made the "DIRECTORY AUTHORITY SERVER OPTIONS" section, but they really belong there.
2014-05-22Documentation fix: DataDir/status/* -> DataDir/stats/*Nick Mathewson
Our documentation had the name of this directory wrong.
2014-05-20doc/HACKING: Improve documentation of how to bump version in maintNick Mathewson
See discussion on 9553: Some of the build scripts don't like it when you can't merge maint into release.
2014-05-16Document that we're incrementing version numbers in maint.Nick Mathewson
(ticket 9553)
2014-05-01Merge remote-tracking branch 'public/bug10849_025'Nick Mathewson
Conflicts: src/or/config.c
2014-04-28Provide missing documentation for two options. For 11634.Nick Mathewson
2014-04-28Remove documentation for obsolete FetchV2NetworkstatusNick Mathewson
2014-04-28Remove a spurious anchor in the manpage. part of 11634.Nick Mathewson
2014-04-28Fix some option names in the manpage.Nick Mathewson
Found with 'make check-docs'. Part of 11634.
2014-04-28Remove privoxy from 'see also' section on manpage.Nick Mathewson
2014-04-28Fix the check-docs scriptNick Mathewson
We broke it when we added anchors to the manpage. This patch fixes it, and makes it sorta detect missing anchors.
2014-04-28Deal with the aftermath of sorting contribNick Mathewson
This basically amounts to grepping for every file that mentioned contrib and adjusting its references to refer to the right place.
2014-04-26The #tor topic no longer includes a version.Nick Mathewson
2014-04-24Merge branch 'bug11396_v2_squashed'Nick Mathewson
Conflicts: src/or/main.c
2014-04-24Change the logic for the default for MaxMemInQueuesNick Mathewson
If we can't detect the physical memory, the new default is 8 GB on 64-bit architectures, and 1 GB on 32-bit architectures. If we *can* detect the physical memory, the new default is CLAMP(256 MB, phys_mem * 0.75, MAX_DFLT) where MAX_DFLT is 8 GB on 64-bit architectures and 2 GB on 32-bit architectures. You can still override the default by hand. The logic here is simply trying to choose a lower default value on systems with less than 12 GB of physical RAM.
2014-04-16Educate tor on OpenBSD's use of divert-to rules with the pf firewall.dana koch
This means that tor can run without needing to communicate with ioctls to the firewall, and therefore doesn't need to run with privileges to open the /dev/pf device node. A new TransProxyType is added for this purpose, "pf-divert"; if the user specifies this TransProxyType in their torrc, then the pf device node is never opened and the connection destination is determined with getsockname (as per pf(4)). The default behaviour (ie., when TransProxyType is "default" when using the pf firewall) is still to assume that pf is configured with rdr-to rules.
2014-04-16ipfw TransPort support on FreeBSD (10267)Nick Mathewson
This isn't on by default; to get it, you need to set "TransProxyType ipfw". (The original patch had automatic detection for whether /dev/pf is present and openable, but that seems marginally fragile.)
2014-04-01Merge remote-tracking branch 'origin/maint-0.2.4'Nick Mathewson
2014-04-01Fix documentation of torrc search orderNick Mathewson
We are searching @CONFDIR@ before $HOME, but the documentation implied otherwise. I screwed this up in f5e86bcd6c06d43ff3af5acd8135bd8b577bc3, when I first documented the $HOME/.torrc possibility. Fix for bug 9213; bugfix on 0.2.3.18-rc.
2014-03-26Fix build of torify.1Nick Mathewson
The build was broken by changes in f8c45339f72525c68, but we didn't notice, since that commit also made torify.1 only get built when tor-fw-helper was turned on. Fixes bug 11321; bugfix on Tor 0.2.5.1-alpha.
2014-03-25Merge remote-tracking branch 'public/bug11061_024'Nick Mathewson
2014-03-25Fix SOCKSPort documentation layoutNick Mathewson
In the end this required a slightly nasty hack using a dummy anchor as an option heading in order to make the "Other recognized __flags__" line indent properly. Fixes bug 11061; Bugfix on 61d740ed.
2014-03-23Merge remote-tracking branch 'karsten/task-11070'Nick Mathewson
2014-03-22bring hacking more up to dateRoger Dingledine
2014-03-19extract some changelog principles into doc/HACKINGNick Mathewson
2014-03-18Take out remaining V1 directory code.Karsten Loesing
2014-03-13Clarify ClientOnly documentationNick Mathewson
The option is unneeded, not meaningless, so explain what it does. Patch from Matt Pagan; fixes 9059.
2014-03-06Merge branch 'bug11108'Nick Mathewson
2014-03-06Clarify default behavior of {SOCKS,Dir}Policy harderNick Mathewson
Improvement on 11108 fix; suggested by cypherpunks.
2014-03-06Give the HTTPS url for jenkins in doc/HACKINGNick Mathewson
2014-03-05Rename PredictedCircsRelevanceTime->PredictedPortsRelevanceTimeNick Mathewson
All circuits are predictive; it's the ports that are expiring here.
2014-03-05Merge branch 'ticket9176_squashed'Nick Mathewson
Conflicts: doc/tor.1.txt
2014-03-05Lower the maximum for PrecictedCircsRelevanceTime to one hourNick Mathewson
2014-03-05More correctly documented PredictedCircsRelevanceTime in tor.1.txtunixninja92
2014-03-05Added Documentation for PredictedCircsRelevanceTime config file argument.unixninja92