| Commit message (Expand) | Author | Age |
* | Merge remote-tracking branch 'public/feature7706' | Nick Mathewson | 2013-02-01 |
|\ |
|
| * | Document the ?? country code. | Nick Mathewson | 2013-01-30 |
| * | When excluding nodes by country, exclude {??} and {A1} too•••This is ticket 7706, reported by "bugcatcher." The rationale here
is that if somebody says 'ExcludeNodes {tv}', then they probably
don't just want to block definitely Tuvaluan nodes: they also want
to block nodes that have unknown country, since for all they know
such nodes are also in Tuvalu.
This behavior is controlled by a new GeoIPExcludeUnknown autobool
option. With the default (auto) setting, we exclude ?? and A1 if
any country is excluded. If the option is 1, we add ?? and A1
unconditionally; if the option is 0, we never add them.
(Right now our geoip file doesn't actually seem to include A1: I'm
including it here in case it comes back.)
This feature only takes effect if you have a GeoIP file. Otherwise
you'd be excluding every node.
| Nick Mathewson | 2013-01-17 |
* | | Refactor the scaling parameter fetching into a single function.•••Also, deprecate the torrc options for the scaling values. It's unlikely anyone
but developers will ever tweak them, even if we provided a single ratio value.
| Mike Perry | 2013-02-01 |
* | | Merge branch 'bug5956_squashed' | Nick Mathewson | 2013-01-30 |
|\ \ |
|
| * | | Parameterize FRAC_USABLE_NEEDED for fraction of circuits•••Instead of hardcoding the minimum fraction of possible paths to 0.6, we
take it from the user, and failing that from the consensus, and
failing that we fall back to 0.6.
| Nick Mathewson | 2013-01-30 |
| |/ |
|
* | | Merge branch 'bug7802' of ssh://git-rw.torproject.org/mikeperry/tor | Andrea Shepard | 2013-01-28 |
|\ \ |
|
| * | | Document path use bias options in the manpage. | Mike Perry | 2013-01-18 |
| |/ |
|
* / | Eliminate MaxOnionsPending; replace it with MaxOnionQueueDelay•••The right way to set "MaxOnionsPending" was to adjust it until the
processing delay was appropriate. So instead, let's measure how long
it takes to process onionskins (sampling them once we have a big
number), and then limit the queue based on its expected time to
finish.
This change is extra-necessary for ntor, since there is no longer a
reasonable way to set MaxOnionsPending without knowing what mix of
onionskins you'll get.
This patch also reserves 1/3 of the onionskin spots for ntor
handshakes, on the theory that TAP handshakes shouldn't be allowed to
starve their speedier cousins. We can change this later if need be.
Resolves 7291.
| Nick Mathewson | 2013-01-03 |
|/ |
|
* | Merge branch 'ntor-resquashed'•••Conflicts:
src/or/cpuworker.c
src/or/or.h
src/test/bench.c
| Nick Mathewson | 2013-01-03 |
|\ |
|
| * | Document UseNTorHandshake | Nick Mathewson | 2013-01-03 |
* | | Merge remote-tracking branch 'mikeperry/209-path-bias-changes' | Nick Mathewson | 2012-12-25 |
|\ \ |
|
| * | | Update manpage. | Mike Perry | 2012-12-10 |
| * | | Update manpage for new PathBias torrc options. | Mike Perry | 2012-12-07 |
* | | | Add documentation for directory guard options | Nick Mathewson | 2012-12-25 |
* | | | Make ECDHE group configurable: 224 for public, 256 for bridges (default) | Nick Mathewson | 2012-12-25 |
* | | | Remove the obsolete doc/TODO.* files•••Closes bug #7730.
| Nick Mathewson | 2012-12-17 |
* | | | Document PreferIPv6Automap in the manpage | Nick Mathewson | 2012-12-17 |
* | | | Build and test most of the machinery needed for IPv6 virtualaddrmaps•••With an IPv6 virtual address map, we can basically hand out a new
IPv6 address for _every_ address we connect to. That'll be cool, and
will let us maybe get around prop205 issues.
This uses some fancy logic to try to make the code paths in the ipv4
and the ipv6 case as close as possible, and moves to randomly
generated addresses so we don't need to maintain those stupid counters
that will collide if Tor restarts but apps don't.
Also has some XXXX items to fix to make this useful. More design
needed.
| Nick Mathewson | 2012-12-17 |
* | | | Turn off by-default use of client-side DNS cacheing. | Nick Mathewson | 2012-12-17 |
* | | | Add documentation for the client-side DNS cache options | Nick Mathewson | 2012-12-17 |
* | | | Merge branch 'fallback_dirsource_v3' | Nick Mathewson | 2012-12-13 |
|\ \ \
| |/ /
|/| | |
|
| * | | Drop FallbackNetworkstatusFile; it never worked. | Nick Mathewson | 2012-12-06 |
| * | | Add an option to weight down authorities when choosing a fallback | Nick Mathewson | 2012-12-06 |
| * | | Add a way to configure selection weights for dir_server_t | Nick Mathewson | 2012-12-06 |
| * | | New FallbackDir option to add extra directories for bootstraping•••This replaces the old FallbackConsensus notion, and should provide a
way -- assuming we pick reasonable nodes! -- to give clients
suggestions of placs to go to get their first consensus.
| Nick Mathewson | 2012-12-06 |
| * | | Rename DirServer to DirAuthority | Nick Mathewson | 2012-12-06 |
| |/ |
|
* / | Expand the manpage to say: watch out for nonlocal socks•••This clears up the remaining issue stopping me from closing bug 6297.
| Nick Mathewson | 2012-12-07 |
|/ |
|
* | Merge branch 'bug7013_take2_squashed' | Nick Mathewson | 2012-11-27 |
|\ |
|
| * | Add a torrc option to specify the bind address of managed proxies. | George Kadianakis | 2012-11-27 |
* | | Add manual page entries for new IPv6-exits options | Nick Mathewson | 2012-11-14 |
* | | Merge remote-tracking branch 'linus/bug5053-bug5055'•••Conflicts:
src/or/geoip.c
| Nick Mathewson | 2012-11-04 |
|\ \ |
|
| * | | Minor tweaks and comments to nils' geoip v6 code. | Karsten Loesing | 2012-10-17 |
| * | | Add GeoIP database for IPv6 addresses | nils | 2012-10-17 |
| |/ |
|
* / | Fix instructions for using Tor with gcov•••It seems as if our new build system broke gcov for me. I've tried to
fix doc/HACKING to describe what I needed to do in order to make it
work again.
| Nick Mathewson | 2012-10-24 |
|/ |
|
* | Make option OutboundBindAddress accept IPv6 addresses too.•••Implements ticket 6786.
| Linus Nordberg | 2012-09-20 |
* | Merge branch 'bug6843' | Nick Mathewson | 2012-09-19 |
|\ |
|
| * | Fix dependency checking on manpage builds•••Fixes bug 6843; bugfix on 0.2.4.1-alpha.
| Nick Mathewson | 2012-09-14 |
* | | Merge remote-tracking branch 'origin/maint-0.2.3' | Nick Mathewson | 2012-09-19 |
|\ \
| |/
|/| |
|
| * | Clarify that hidden services are TCP only•••Also remove some trailing whitespace.
Patch from maker; fixes bug 6024.
| Nick Mathewson | 2012-09-19 |
* | | Merge branch 'maint-0.2.3' | Roger Dingledine | 2012-09-14 |
|\| |
|
| * | Fix man page typo | Robert Ransom | 2012-09-13 |
* | | raise bandwidthrate/bandwidthburst to a new "infinite"•••addresses bug 6605.
| Roger Dingledine | 2012-09-10 |
* | | Merge remote-tracking branch 'asn/bug4567_rebased' | Nick Mathewson | 2012-09-06 |
|\ \ |
|
| * | | General tweaks and fixes for Nick's comments.•••* Add changes/ files.
* Edit the tor-fw-helper manpage.
* Fix check-spaces.
* Add prototype for get_list_of_ports_to_forward().
* Fix tor_parse_long() TCP port range.
* Improve doc. of tor_check_port_forwarding().
* Check for overflows in tor_check_port_forwarding().
* Demote successful port forwarding to LOG_INFO.
Conflicts:
src/common/address.c
src/or/circuitbuild.c
| George Kadianakis | 2012-09-05 |
* | | | Merge branch 'maint-0.2.3' | Roger Dingledine | 2012-09-05 |
|\ \ \
| | |/
| |/| |
|
| * | | Update the minimum bandwidth for a public relay•••The current cutoff is 30KB, but in reality a useful cutoff is probably
more like 50KB or 100KB.
| Roger Dingledine | 2012-09-05 |
* | | | Merge remote-tracking branch 'linus/bug6770_3'•••Conflicts:
doc/tor.1.txt
src/or/config.c
| Nick Mathewson | 2012-09-05 |
|\ \ \ |
|
| * | | | Make AuthDirHasIPv6Connectivity a BOOL.•••This is a fix of unreleased tor. It solves ticket #6770.
| Linus Nordberg | 2012-09-05 |
| | |/
| |/| |
|
* / | | Remove AuthDirPublishIPv6 and let AuthDirHasIPv6Connectivity fill its function.•••See #4771 for rationale.
Note that this patch does not take suggested changes in #4470 into
account and keeps treating AuthDirHasIPv6Connectivity as an
AUTOBOOL. Thus, bug fixes for that are included here as well.
This is a fix on master, unreleased as of now.
| Linus Nordberg | 2012-09-05 |
|/ / |
|