Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-02-16 | Merge branch 'bug17852_revised' | Nick Mathewson | |
2016-02-16 | changes file for bug17852 | Nick Mathewson | |
2016-02-11 | Merge branch 'check_log_mutex_uncherrypicked' | Nick Mathewson | |
2016-02-11 | Merge branch 'maint-0.2.7' | Nick Mathewson | |
2016-02-11 | Merge branch 'maint-0.2.6' into maint-0.2.7 | Nick Mathewson | |
2016-02-11 | Merge branch 'maint-0.2.5' into maint-0.2.6 | Nick Mathewson | |
2016-02-11 | Merge branch 'maint-0.2.4' into maint-0.2.5 | Nick Mathewson | |
2016-02-11 | Merge branch 'bug18162_024' into maint-0.2.4 | Nick Mathewson | |
2016-02-11 | Merge remote-tracking branch 'teor/feature17840-v11-merged-v2' | Nick Mathewson | |
2016-02-11 | Merge remote-tracking branch 'weasel/bug18261' | Nick Mathewson | |
2016-02-10 | Merge remote-tracking branch 'teor/bug18208' | Nick Mathewson | |
2016-02-10 | Quotes added on configure script's string comparison. | zerosion | |
Solves #17744 The syntax has been generalized too, so there are only double quotes. Signed-off-by: zerosion <zerosion@protonmail.ch> | |||
2016-02-10 | Merge remote-tracking branch 'andrea/bug18116' | Nick Mathewson | |
2016-02-10 | Merge remote-tracking branch 'sebastian/bug18242' | Nick Mathewson | |
2016-02-10 | Merge remote-tracking branch 'public/bug18184' | Nick Mathewson | |
2016-02-10 | Properly detach circuits from cmuxes when calling circuit_free_all() on ↵ | Andrea Shepard | |
shutdown again | |||
2016-02-08 | changes file for bug18051 | Nick Mathewson | |
2016-02-06 | Fix a segfault during startup | Peter Palfrader | |
If unix socket was configured as listener (such as a ControlSocket or a SocksPort unix socket), and tor was started as root but not configured to switch to another user, tor would segfault while trying to string compare a NULL value. Fixes bug 18261; bugfix on 0.2.8.1-alpha. Patch by weasel. | |||
2016-02-06 | Merge remote-tracking branch 'yawning/bug18221' | Nick Mathewson | |
2016-02-06 | Credit the patch | Nick Mathewson | |
2016-02-06 | Merge branch 'cleaned_aes_crypt' | Nick Mathewson | |
2016-02-06 | changes file for bug 18258. | Nick Mathewson | |
2016-02-06 | add a changes file | Nick Mathewson | |
2016-02-05 | Merge branch 'maint-0.2.7' | Nick Mathewson | |
2016-02-05 | Merge branch 'maint-0.2.6' into maint-0.2.7 | Nick Mathewson | |
2016-02-05 | Merge branch 'maint-0.2.5' into maint-0.2.6 | Nick Mathewson | |
2016-02-05 | Merge branch 'maint-0.2.4' into maint-0.2.5 | Nick Mathewson | |
2016-02-04 | whoops, add a changes file for 18242. | Nick Mathewson | |
2016-02-04 | Add an assertion to tor_libevent_get_base() | Nick Mathewson | |
Closes ticket 18241. | |||
2016-02-04 | Update geoip and geoip6 to the February 2 2016 database. | Karsten Loesing | |
2016-02-03 | Revise some more changelog entries | Nick Mathewson | |
2016-02-03 | Make Tor build happily with OpenSSL master and libressl. | Nick Mathewson | |
Also tested with 1.0.0t and 1.0.2f. Closes ticket 19784. Closes most of 17921. (Still need to make some tests pass.) | |||
2016-02-02 | Validate the DH parameters for correctness. | Yawning Angel | |
We use sensible parameters taken from common sources, and no longer have dynamic DH groups as an option, but it feels prudent to have OpenSSL validate p and g at initialization time. | |||
2016-02-02 | Update ExitPolicy when interface addresses change | teor (Tim Wilson-Brown) | |
Tor exit relays reject local interface addresses in their exit policy. Make sure those policies are updated when interface addresses change. | |||
2016-02-01 | use sortChanges to fold changes files into changelog. No additional editing ↵ | Nick Mathewson | |
or formatting yet. | |||
2016-02-01 | We can't do subbullets in changes files | Nick Mathewson | |
2016-02-01 | Fix all the warnings from lintChanges.py | Nick Mathewson | |
2016-02-01 | We don't include fixes for non-released bugs in the changelog | Nick Mathewson | |
2016-02-01 | Merge branch 'maint-0.2.7' | Nick Mathewson | |
2016-02-01 | Make "lintchanges.py" pass on maint-0.2.7 | Nick Mathewson | |
2016-01-29 | Remove support for unsigned time_t | Nick Mathewson | |
We've never actually tested this support, and we should probably assume it's broken. To the best of my knowledge, only OpenVMS has this, and even on OpenVMS it's a compile-time option to disable it. And I don't think we build on openvms anyway. (Everybody else seems to be working around the 2038 problem by using a 64-bit time_t, which won't expire for roughly 292 billion years.) Closes ticket 18184. | |||
2016-01-29 | Merge branch 'feature17840-v11-squashed' into feature17840-v11-merged | teor (Tim Wilson-Brown) | |
Conflicts: src/or/directory.c src/test/test_routerlist.c Fix minor conflicts. | |||
2016-01-29 | Add ClientUseIPv4 and ClientPreferIPv6DirPort torrc options | teor (Tim Wilson-Brown) | |
ClientUseIPv4 0 tells tor to avoid IPv4 client connections. ClientPreferIPv6DirPort 1 tells tor to prefer IPv6 directory connections. Refactor policy for IPv4/IPv6 preferences. Fix a bug where node->ipv6_preferred could become stale if ClientPreferIPv6ORPort was changed after the consensus was loaded. Update documentation, existing code, add unit tests. | |||
2016-01-28 | Merge branch 'maint-0.2.7' | Nick Mathewson | |
2016-01-28 | Add descriptions for --keygen to the manpage | Nick Mathewson | |
Based on text from s7r | |||
2016-01-27 | avoid integer overflow in and around smartlist_ensure_capacity. | Nick Mathewson | |
This closes bug 18162; bugfix on a45b1315909c9, which fixed a related issue long ago. In addition to the #18162 issues, this fixes a signed integer overflow in smarltist_add_all(), which is probably not so great either. | |||
2016-01-18 | Merge branch 'fallbacks-0281-squashed' | Nick Mathewson | |
2016-01-18 | Add default fallback directories for the 0.2.8 alpha releases | teor (Tim Wilson-Brown) | |
Allow fallback directories which have been stable for 30 days to work around #18050, which causes relays to submit descriptors with 0 DirPorts when restarted. (Particularly during Tor version upgrades.) Ignore low fallback directory count in alpha builds. | |||
2016-01-18 | Merge branch 'maint-0.2.7' | Nick Mathewson | |
2016-01-18 | Merge branch 'maint-0.2.6' into maint-0.2.7 | Nick Mathewson | |