aboutsummaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAge
* Merge branch 'bug11396_v2_squashed'Nick Mathewson2014-04-24
|\ | | | | | | | | Conflicts: src/or/main.c
| * Change the logic for the default for MaxMemInQueuesNick Mathewson2014-04-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Educate tor on OpenBSD's use of divert-to rules with the pf firewall.dana koch2014-04-16
| | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | ipfw TransPort support on FreeBSD (10267)Nick Mathewson2014-04-16
|/ | | | | | 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.)
* Merge remote-tracking branch 'origin/maint-0.2.4'Nick Mathewson2014-04-01
|\
| * Fix documentation of torrc search orderNick Mathewson2014-04-01
| | | | | | | | | | | | | | | | | | | | 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.
* | Fix build of torify.1Nick Mathewson2014-03-26
| | | | | | | | | | | | | | | | 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.
* | Merge remote-tracking branch 'public/bug11061_024'Nick Mathewson2014-03-25
|\ \
| * | Fix SOCKSPort documentation layoutNick Mathewson2014-03-25
| |/ | | | | | | | | | | | | | | 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.
* | Merge remote-tracking branch 'karsten/task-11070'Nick Mathewson2014-03-23
|\ \
| * | Take out remaining V1 directory code.Karsten Loesing2014-03-18
| | |
* | | bring hacking more up to dateRoger Dingledine2014-03-22
| | |
* | | extract some changelog principles into doc/HACKINGNick Mathewson2014-03-19
|/ /
* | Clarify ClientOnly documentationNick Mathewson2014-03-13
| | | | | | | | | | | | The option is unneeded, not meaningless, so explain what it does. Patch from Matt Pagan; fixes 9059.
* | Merge branch 'bug11108'Nick Mathewson2014-03-06
|\ \
| * | Clarify default behavior of {SOCKS,Dir}Policy harderNick Mathewson2014-03-06
| | | | | | | | | | | | Improvement on 11108 fix; suggested by cypherpunks.
| * | Warn if ports are specified in {Socks,Dir}PolicyNick Mathewson2014-03-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We have ignored any ports listed here since 80365b989 (0.0.7rc1), but we didn't warn the user that we were ignoring them. This patch adds a warning if you put explicit ports in any of the options {Socks,Dir}Policy or AuthDir{Reject,Invalid,BadDir,BadExit}. It also adjusts the manpage to say that ports are ignored. Fixes ticket 11108.
* | | Give the HTTPS url for jenkins in doc/HACKINGNick Mathewson2014-03-06
| | |
* | | Rename PredictedCircsRelevanceTime->PredictedPortsRelevanceTimeNick Mathewson2014-03-05
| | | | | | | | | | | | All circuits are predictive; it's the ports that are expiring here.
* | | Merge branch 'ticket9176_squashed'Nick Mathewson2014-03-05
|\ \ \ | | | | | | | | | | | | | | | | Conflicts: doc/tor.1.txt
| * | | Lower the maximum for PrecictedCircsRelevanceTime to one hourNick Mathewson2014-03-05
| | | |
| * | | More correctly documented PredictedCircsRelevanceTime in tor.1.txtunixninja922014-03-05
| | | |
| * | | Added Documentation for PredictedCircsRelevanceTime config file argument.unixninja922014-03-05
| | | |
* | | | Document alternate bandwidth/memory unit spellingsNick Mathewson2014-03-04
| | | |
* | | | Merge branch 'bug10169_025_v2'Nick Mathewson2014-03-04
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | Conflicts: src/test/test.c
| * | | Merge remote-tracking branch 'public/bug10169_024' into bug10169_025_v2Nick Mathewson2014-02-12
| |\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: src/or/circuitlist.c
| | * \ \ Merge remote-tracking branch 'public/bug10169_023' into bug10169_024Nick Mathewson2014-01-03
| | |\ \ \ | | | |_|/ | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: doc/tor.1.txt src/or/config.c src/or/or.h The conflicts were all pretty trivial.
| | | * | Rename MaxMemInCellQueues to MaxMemInQueuesNick Mathewson2013-11-20
| | | | |
* | | | | Fix max client name length in HiddenServiceAuthorizeClient descriptionLunar2014-03-03
| | | | | | | | | | | | | | | | | | | | REND_CLIENTNAME_MAX_LEN is set to 16, not 19.
* | | | | Write hashed bridge fingerprint to logs and to disk.Karsten Loesing2014-02-28
| | | | | | | | | | | | | | | | | | | | Implements #10884.
* | | | | add a missing word to the man pageRoger Dingledine2014-02-12
|/ / / /
* | | | Tweak DirAuthority documentationNick Mathewson2014-02-11
| | | | | | | | | | | | | | | | | | | | Per a comment from karsten, there is no longer v2 authority support, so stop pretending there is. Also, fix a grammar error.x
* | | | Remove options for configuring HS authorities.Nick Mathewson2014-02-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (There is no longer meaningfully any such thing as a HS authority, since we stopped uploading or downloading v0 hs descriptors in 0.2.2.1-alpha.) Implements #10881, and part of #10841.
* | | | TransProxyType replaces TransTPROXY optionNick Mathewson2014-02-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | I'm making this change now since ipfw will want its own option too, and proliferating options here isn't sensible. (See #10582 and #10267)
* | | | Add support for TPROXY via new TransTPRoxy optionNick Mathewson2014-01-31
| | | | | | | | | | | | | | | | Based on patch from "thomo" at #10582.
* | | | Document more coverage tricks in doc/HACKINGNick Mathewson2014-01-21
| | | |
* | | | Merge remote-tracking branch 'origin/maint-0.2.4'Nick Mathewson2013-12-23
|\| | |
| * | | Clarify DirPort multiplicityNick Mathewson2013-12-23
| | | | | | | | | | | | | | | | Fix for #10470 as suggested by arma
* | | | Merge remote-tracking branch 'origin/maint-0.2.4'Nick Mathewson2013-11-10
|\| | |
| * | | Change documentation DirServer->DirAuthorityNick Mathewson2013-11-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | We renamed the option, but we didn't actually fix it in the log messages or the docs. This patch does that. For #10124. Patch by sqrt2.
* | | | Tweak file documentation in tor.1.txtNick Mathewson2013-11-07
| | | |
* | | | Updating manpage to describe some of the data directory files.rl19872013-11-07
| | | |
* | | | Documentation and tests for 10060Nick Mathewson2013-11-07
| | | |
* | | | Implementing --allow-missing-torrc CLI option.rl19872013-11-07
| | | |
* | | | Merge branch 'prop221_squashed_024'Nick Mathewson2013-11-01
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: src/or/or.h
| * | | | Implement proposal 221: Stop sending CREATE_FASTNick Mathewson2013-11-01
| |/ / / | | | | | | | | | | | | | | | | This makes FastFirstHopPK an AUTOBOOL; makes the default "auto"; and makes the behavior of "auto" be "look at the consensus."
* | | | Merge remote-tracking branch 'origin/maint-0.2.4'Nick Mathewson2013-10-31
|\| | |
| * | | Merge remote-tracking branch 'public/bug9780_024_v2' into maint-0.2.4Nick Mathewson2013-10-31
| |\ \ \
| | * | | Switch ECDHE group default logic for bridge/relay TLSNick Mathewson2013-10-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | According to the manpage, bridges use P256 for conformity and relays use P224 for speed. But skruffy points out that we've gotten it backwards in the code. In this patch, we make the default P256 for everybody. Fixes bug 9780; bugfix on 0.2.4.8-alpha.
* | | | | Mention that tor is client-by-default. From Weasel. Resolves #10057Nick Mathewson2013-10-31
| | | | |