summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-03-17forward-part 0.2.4 changelog; copy changelog into release notestor-0.2.5.11Nick Mathewson
2015-03-17Pick a release date; add a sentence.Nick Mathewson
2015-03-12Another entry for the 0.2.5.11 changelogNick Mathewson
2015-03-12Merge branch 'maint-0.2.5' into release-0.2.5Nick Mathewson
2015-03-12Revert "Make TransProxyType ipfw work correctly"Nick Mathewson
This reverts commit 681802817deb6fb93b95f8284856fd42f3556600. (I didn't mean to backport this, but somehow I had based my branch for #15205 on it.)
2015-03-12Merge remote-tracking branch 'public/bug15205_025' into maint-0.2.5Nick Mathewson
2015-03-12Merge branch 'maint-0.2.5' into release-0.2.5Nick Mathewson
Conflicts: configure.ac contrib/win32build/tor-mingw.nsi.in src/win32/orconfig.h
2015-03-12Bump 025 version to 0.2.5.11Nick Mathewson
2015-03-12Merge remote-tracking branch 'origin/maint-0.2.4' into maint-0.2.5Nick Mathewson
2015-03-12Bump 0.2.4 version.Nick Mathewson
2015-03-12fold entries into changelog for 025Nick Mathewson
2015-03-09Merge branch 'maint-0.2.5' into release-0.2.5Nick Mathewson
2015-03-09Merge remote-tracking branch 'origin/maint-0.2.4' into maint-0.2.5Nick Mathewson
2015-03-09Merge remote-tracking branch 'karsten/geoip6-mar2015' into maint-0.2.4Nick Mathewson
2015-03-09Merge remote-tracking branch 'origin/maint-0.2.3' into maint-0.2.4Nick Mathewson
2015-03-09Update geoip6 to the March 3 2015 database.Karsten Loesing
2015-03-09Update geoip to the March 3 2015 database.Karsten Loesing
2015-03-09Copy changelog entries from the 0.2.6 changelog into the 0.2.5.11 changelogNick Mathewson
2015-03-09Don't use checked strl{cat,cpy} on OSX.Nick Mathewson
There is a bug in the overlap-checking in strlcat that can crash Tor servers. Fixes bug 15205; this is an OSX bug, not a Tor bug.
2015-03-09Merge remote-tracking branch 'origin/maint-0.2.5' into release-0.2.5Nick Mathewson
2015-03-09Restore c89 in 0.2.5Nick Mathewson
2015-03-09Merge remote-tracking branch 'public/bug14261_025' into maint-0.2.5Nick Mathewson
2015-03-09GETINFO bw-event-cache to get information on recent BW eventsNick Mathewson
Closes 14128; useful to regain functionality lost because of 13988.
2015-03-09Merge remote-tracking branch 'public/bug13988_025' into maint-0.2.5Nick Mathewson
2015-03-09Merge remote-tracking branch 'public/bug15088_025' into maint-0.2.5Nick Mathewson
2015-03-09Merge remote-tracking branch 'origin/maint-0.2.4' into maint-0.2.5Nick Mathewson
2015-03-09Merge remote-tracking branch 'origin/maint-0.2.3' into maint-0.2.4Nick Mathewson
2015-03-09Adjust changes headerNick Mathewson
2015-03-04Make TransProxyType ipfw work correctlyNick Mathewson
Fixes bug 15064; bugfix on 0.2.5.4-alpha.
2015-03-04Add wait4 to the seccomp2 sandbox allowable syscall listNick Mathewson
fixes bug 15088. patch from sanic.
2015-03-03Make the assert related to 15083 a tiny bit more tolerantNick Mathewson
2015-03-03Do not leave empty, invalid chunks in buffers during buf_pullupNick Mathewson
This fixes an assertion failure bug in 15083; bugfix on 0.2.0.10-alpha. Patch from 'cypherpunks'
2015-02-24Merge remote-tracking branch 'origin/maint-0.2.4' into maint-0.2.5Nick Mathewson
2015-02-24Merge remote-tracking branch 'public/bug14129_024' into maint-0.2.4Nick Mathewson
2015-02-20Merge remote-tracking branch 'origin/maint-0.2.4' into maint-0.2.5Nick Mathewson
2015-02-16Faravahar's New IP Address as of 2/20/2015Sina Rabbani
2015-01-23Merge remote-tracking branch 'origin/maint-0.2.4' into maint-0.2.5Nick Mathewson
2015-01-23Merge remote-tracking branch 'karsten/geoip6-jan2015' into maint-0.2.4Nick Mathewson
2015-01-23Merge remote-tracking branch 'origin/maint-0.2.3' into maint-0.2.4Nick Mathewson
2015-01-22Update geoip6 to the January 7 2015 database.Karsten Loesing
2015-01-22Update geoip to the January 7 2015 database.Karsten Loesing
2015-01-18Increase limit for status vote download size by a factor of 5.Nick Mathewson
We've started to hit the limit here. We introduced the limit in 0.1.2.5-alpha. This fixes bug 14261, but we should have a smarter way to not actually do the behavior this permits. See #14267 for a ticket about fixing that.
2015-01-16fix another mingw64 unit test warninNick Mathewson
2015-01-15Fix a compilation warning in the unit testsNick Mathewson
2015-01-15Ignore warning for redundant decl in openssl/srtp.hNick Mathewson
Backports some commits from tor master.
2015-01-13Remove needless strdup in addressmap_register_virtual_address()Nick Mathewson
Fixes bug 14195. Bugfix on 0.1.0.1-rc.
2015-01-12Merge remote-tracking branch 'public/bug14129_024' into maint-0.2.5Nick Mathewson
2015-01-11Don't crash on torrc Vi[rtualAddrNetworkIPv[4|6]] with no option valueteor
Check for a missing option value in parse_virtual_addr_network before asserting on the NULL in tor_addr_parse_mask_ports. This avoids crashing on torrc lines like Vi[rtualAddrNetworkIPv[4|6]] when no value follows the option. Bugfix on 0.2.3 (de4cc126cbb5 on 24 November 2012), fixes #14142.
2015-01-08Avoid attempts to double-remove edge connections from the DNS resolver.Nick Mathewson
Also, avoid crashing when we attempt to double-remove an edge connection from the DNS resolver: just log a bug warning instead. Fixes bug 14129. Bugfix on 0d20fee2fbd48978, which was in 0.0.7rc1. jowr found the bug. cypherpunks wrote the fix. I added the log message and removed the assert.
2015-01-07Enlarge the buffer for a line in a bw fileSebastian Hahn