aboutsummaryrefslogtreecommitdiff
path: root/src/or/routerset.c
Commit message (Collapse)AuthorAge
* Remove a bunch of functions that were never called.Nick Mathewson2014-02-15
|
* Fix typos in a few log messagesBenjamin Kerensa2013-03-10
|
* Fix a copy-and-paste issue found by coverityNick Mathewson2013-02-11
| | | | Fixes CID 980650; bugfix on 0.2.4.10-alpha.
* Merge remote-tracking branch 'public/feature7706'Nick Mathewson2013-02-01
|\
| * When excluding nodes by country, exclude {??} and {A1} tooNick Mathewson2013-01-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Rename log() to tor_log() for loggingNick Mathewson2013-02-01
|/ | | | | | | | | | | | | This is meant to avoid conflict with the built-in log() function in math.h. It resolves ticket 7599. First reported by dhill. This was generated with the following perl script: #!/usr/bin/perl -w -i -p s/\blog\(LOG_(ERR|WARN|NOTICE|INFO|DEBUG)\s*,\s*/log_\L$1\(/g; s/\blog\(/tor_log\(/g;
* Update the copyright date to 201.Nick Mathewson2013-01-16
|
* Better policy support for IPv6Nick Mathewson2012-11-14
| | | | | | | | | | | Now, "accept *:80" means "accept all addresses on port 80", and not just IPv4. For just v4, say "accept *4:80"; for just v6 say "accept *6:80". We can parse these policies from torrc just fine, and we should be successfully keeping them out of descriptors for now. We also now include appropriate IPv6 addresses in "reject private:*"
* Change some comments to reflect the multitude of GeoIP databases.Linus Nordberg2012-10-31
|
* Separate IPv4 and IPv6 geoip file loading.Linus Nordberg2012-10-20
| | | | | | | Also add IPv6 geoip file digest to extra info. Also also, add support for IPv6 addresses in control command "ip-to-country".
* Two changes lost in rebase resurrected.Linus Nordberg2012-10-17
|
* Split the routerset code out of routerlist.cNick Mathewson2012-09-14