summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-07-07add a blurb for 0.2.2.30-rctor-0.2.2.30-rcRoger Dingledine
2011-07-07bump to 0.2.2.30-rcRoger Dingledine
2011-07-07fold in new changes entriesRoger Dingledine
2011-07-07remove changes file i'd already merged in (oops)Roger Dingledine
2011-07-07Merge branch 'maint-0.2.2' into release-0.2.2Roger Dingledine
2011-07-07Merge branch 'maint-0.2.1' into maint-0.2.2Roger Dingledine
2011-07-07update to the july 2011 geoip dbRoger Dingledine
2011-07-07Merge branch 'maint-0.2.2' into release-0.2.2Roger Dingledine
2011-07-07Correctly send a SUCCEEDED event for rdns requestsSebastian Hahn
The issue was that we overlooked the possibility of reverse DNS success at the end of connection_ap_handshake_socks_resolved(). Issue discovered by katmagic, thanks!
2011-07-06Fix weird formatting of html manpageSebastian Hahn
Asciidoc was inserting <pre> tags for paragraphs that started with a '+' at the beginning of the line. Instead, we need a space in front of the plus.
2011-07-06Merge branch 'maint-0.2.2' into release-0.2.2Roger Dingledine
2011-07-06appease check-spacesRoger Dingledine
2011-07-06prepare for tomorrow's release candidateRoger Dingledine
2011-07-06Merge branch 'maint-0.2.2' into release-0.2.2Roger Dingledine
2011-07-05Merge remote-tracking branch 'rransom-tor/bug3465-022' into maint-0.2.2Nick Mathewson
2011-07-01Merge branch 'cov217_022_squashed' into maint-0.2.2Nick Mathewson
2011-07-01Use strlcpy when copying node IDs into measured_bw_line_tNick Mathewson
We were using strncpy before, which isn't our style for stuff like this. This isn't a bug, though: before calling strncpy, we were checking that strlen(src) was indeed == HEX_DIGEST_LEN, which is less than sizeof(dst), so there was no way we could fail to NUL-terminate. Still, strncpy(a,b,sizeof(a)) is an idiom that we ought to squash everyplace. Fixes CID #427.
2011-07-01Merge branch 'cid30_changelog' into maint-0.2.2Nick Mathewson
2011-07-01Merge remote-tracking branch 'origin/maint-0.2.1' into maint-0.2.2Nick Mathewson
2011-07-01Merge branches 'cov217_021' and 'cid_450' into maint-0.2.1Nick Mathewson
2011-07-01Use strlcpy in create_unix_sockaddr()Nick Mathewson
Using strncpy meant that if listenaddress were ever >= sizeof(sockaddr_un.sun_path), we would fail to nul-terminate sun_path. This isn't a big deal: we never read sun_path, and the kernel is smart enough to reject the sockaddr_un if it isn't nul-terminated. Nonetheless, it's a dumb failure mode. Instead, we should reject addresses that don't fit in sockaddr_un.sun_path. Coverity found this; it's CID 428. Bugfix on 0.2.0.3-alpha.
2011-07-01Fix a rare memory leak in rend_cache_storeNick Mathewson
When we rejected a descriptor for not being the one we wanted, we were letting the parsed descriptor go out of scope. Found by Coverity; CID # 30. Bugfix on 0.2.1.26. (No changes file yet, since this is not in any 0.2.1.x release.)
2011-07-01Add a changelog entry for cid30 fix.Nick Mathewson
2011-07-01Fix insanely large stack_allocation in log_credential_statusNick Mathewson
I'm not one to insist on C's miserly stack limits, but allocating a 256K array on the stack is too much even for me. Bugfix on 0.2.1.7-alpha. Found by coverity. Fixes CID # 450.
2011-06-25Add BUILDTIMEOUT_SET to the result of GETINFO events/namesRobert Ransom
2011-06-24Correct a commentRobert Ransom
2011-06-23Fix minor comment issuesRobert Ransom
2011-06-22Improve documentation of smartlist_split_stringRobert Ransom
2011-06-22Fix minor comment issuesRobert Ransom
2011-06-22Fix comment typoRobert Ransom
2011-06-21add a blurb for 0.2.2.29-betaRoger Dingledine
2011-06-21explain that the ./publish should happen soon after the scpRoger Dingledine
otherwise you scp a tarball up but only one version of the website has it.
2011-06-20Merge branch 'maint-0.2.2' into release-0.2.2tor-0.2.2.29-betaRoger Dingledine
2011-06-20Fix overwide lines in util.cNick Mathewson
2011-06-20bump to 0.2.2.29-betaRoger Dingledine
2011-06-20fold in the changes filesRoger Dingledine
2011-06-19Merge branch 'maint-0.2.2' into release-0.2.2Roger Dingledine
2011-06-19Tweak bug2355_revert at suggestion from RogerNick Mathewson
2011-06-17Add changes file for bug2355 revertNick Mathewson
2011-06-17Revert "Add an "auto" option to UseBridges"Nick Mathewson
This reverts commit 507c1257a4d9c629fefc2adbad8db73607749734.
2011-06-17Revert "Update man page for new UseBridges tristate behaviour."Nick Mathewson
This reverts commit 40cfad1b5ae90b06eb74861a4fdc1310f8611111.
2011-06-17Merge remote-tracking branch 'origin/maint-0.2.1' into maint-0.2.2Nick Mathewson
2011-06-17Abandon rendezvous circuits on SIGNAL NEWNYMRobert Ransom
2011-06-17Merge branch 'bug3407' into maint-0.2.2Nick Mathewson
2011-06-17Make send_control_event_impl's behaviour saneRobert Ransom
2011-06-17Fix comment typoRobert Ransom
2011-06-17Make connection_printf_to_buf's behaviour saneRobert Ransom
2011-06-17log when we finish ssl handshake and move to renegotiationRoger Dingledine
debug-level since it will be quite common. logged at both client and server side. this step should help us track what's going on with people filtering tor connections by our ssl habits.
2011-06-14Merge remote-tracking branch 'public/bug3369' into maint-0.2.2Nick Mathewson
2011-06-14Add changes file for bug3393Nick Mathewson