summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-03-14Update to latest tinytestNick Mathewson
(This pulls in some fixes to tinytest_demo.c, which Tor doesn't build.)
2014-03-13Sort the 0.2.5.3-alpha changelog entries a little better.Nick Mathewson
Still haven't edited any. Also, remove all the changes/* entries that got merged back in 6b5ef3889d83c715973d.
2014-03-13Clarify ClientOnly documentationNick Mathewson
The option is unneeded, not meaningless, so explain what it does. Patch from Matt Pagan; fixes 9059.
2014-03-13Fix some leaks/missed checks in the unit testsNick Mathewson
Coverity spotted these.
2014-03-12Sort the 0.2.5.3-alpha changelog a littleNick Mathewson
2014-03-12Start work on an 0.2.5.3-alpha changelog.Nick Mathewson
This collects all the changes file, and find the stuff that also appeared new in 0.2.4.21.
2014-03-12bugfix-on for 5018_noticeNick Mathewson
2014-03-12Merge remote-tracking branch 'asn/bug5018_notice'Nick Mathewson
2014-03-11Merge remote-tracking branch 'origin/maint-0.2.4'Nick Mathewson
2014-03-11Remove the unused router_hex_digest_matchesNick Mathewson
When I removed some unused functions in 5bfa373eeeb, this became unused as well.
2014-03-11Merge remote-tracking branch 'asn/bug11069_take2'Nick Mathewson
2014-03-10Throw control port warning if we failed to connect to all our bridges.George Kadianakis
2014-03-10 Tone down the log message for when we don't need a PT proxy.George Kadianakis
2014-03-10Merge branch 'bug11156_squashed'Nick Mathewson
2014-03-10Merge branch 'bug11043_take2_squashed'Nick Mathewson
2014-03-10Don't do directory fetches before all PTs have been configured.George Kadianakis
2014-03-10Improve the log message for when the Extended ORPort is not enabled.George Kadianakis
2014-03-06Upgrade to the latest version of tinytest.Nick Mathewson
This brings us to tinytest commit 709a36ba63ff16d8. The only big change tor-side is that we don't need our own test_mem_op operation any longer.
2014-03-06tinytest tt_{mem,str}_op now handle NULLs betterNick Mathewson
Now a NULL argument to either makes it fail, not crash. Fies bug 9004; bugfix on 0.2.2.4-alpha.
2014-03-06Merge remote-tracking branch 'origin/maint-0.2.4'Nick Mathewson
2014-03-06Merge branch 'bug11108'Nick Mathewson
2014-03-06Clarify default behavior of {SOCKS,Dir}Policy harderNick Mathewson
Improvement on 11108 fix; suggested by cypherpunks.
2014-03-06Give the HTTPS url for jenkins in doc/HACKINGNick Mathewson
2014-03-06Correct the URL in the "a relay on win95???" messageNick Mathewson
This is a fix for 9393; it's not a bugfix on any Tor version per se, but rather on whatever Tor version was current when we reorganized the wiki.
2014-03-05Fix whitespace errors, all of them mine.Nick Mathewson
2014-03-05Rename PredictedCircsRelevanceTime->PredictedPortsRelevanceTimeNick Mathewson
All circuits are predictive; it's the ports that are expiring here.
2014-03-05Merge branch 'ticket9176_squashed'Nick Mathewson
Conflicts: doc/tor.1.txt
2014-03-05Fix wide lines.Nick Mathewson
2014-03-05Lower the maximum for PrecictedCircsRelevanceTime to one hourNick Mathewson
2014-03-05Fixed spacing.unixninja92
2014-03-05More correctly documented PredictedCircsRelevanceTime in tor.1.txtunixninja92
2014-03-05Added max value to PredictedCircsRelevanceTime.unixninja92
2014-03-05Added Documentation for PredictedCircsRelevanceTime config file argument.unixninja92
2014-03-05PredictedCircsRelevanceTime: limit how long we predict a port will be usedunixninja92
By default, after you've made a connection to port XYZ, we assume you might still want to have an exit ready to connect to XYZ for one hour. This patch lets you lower that interval. Implements ticket 91
2014-03-05Merge remote-tracking branch 'arma/ticket5528'Nick Mathewson
Conflicts: src/or/router.c src/test/test_dir.c
2014-03-05Merge remote-tracking branch 'public/bug8788'Nick Mathewson
2014-03-04Document alternate bandwidth/memory unit spellingsNick Mathewson
2014-03-04Include v3 in documented 'protocols' in rend_service_descriptor_tNick Mathewson
Also make it unsigned and document that it's for INTRODUCE cell versions. Fixes 9099; bugfix on 0.2.1.5-alpha, which introduced the v3 protocol.
2014-03-04Merge branch 'bug10169_025_v2'Nick Mathewson
Conflicts: src/test/test.c
2014-03-04Merge remote-tracking branch 'public/bug10169_024' into bug10169_025_v2Nick Mathewson
Conflicts: src/common/compat_libevent.h src/or/relay.c
2014-03-04Merge remote-tracking branch 'public/bug10169_023' into bug10169_024Nick Mathewson
Conflicts: src/or/relay.c
2014-03-04Mention doc/HACKING in the readmeNick Mathewson
2014-03-03ATTR_NORETURN is needed on lost_owning_controller nowNick Mathewson
This should fixes some "hey, that function could have __attribute__((noreturn))" warnings introduced by f96400d9. Bug not in any released version of Tor.
2014-03-03Warn if ports are specified in {Socks,Dir}PolicyNick Mathewson
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.
2014-03-03Fix compilation warnings in tor_addr_make_null patchNick Mathewson
There was one "missing prototype" warning because the test function wasn't static, and one "unused parameter" warning about the "data" parameter. Also, I added a couple of tests to make sure that the "make_null" addresses really were the addresses we expected, by formatting them as strings.
2014-03-03add test for tor_addr_make_nullKevin Murray
Signed-off-by: Kevin Murray <spam@kdmurray.id.au>
2014-03-03tweak changes file.Nick Mathewson
2014-03-03Fix max client name length in HiddenServiceAuthorizeClient descriptionLunar
REND_CLIENTNAME_MAX_LEN is set to 16, not 19.
2014-03-03trivial whitespace fixesRoger Dingledine
2014-03-01forward-port the 0.2.4.21 release notesRoger Dingledine