summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-08-18add brief blurb for the new release (candidate)tor-0.2.2.31-rcRoger Dingledine
2011-08-17bump to 0.2.2.31-rcRoger Dingledine
2011-08-17clean up the 0.2.2.31-rc changelogRoger Dingledine
2011-08-17Start a changelog for 0.2.2.31-??. No editing has yet been done on the entries.Nick Mathewson
2011-08-17Merge remote-tracking branch 'origin/maint-0.2.2' into release-0.2.2Nick Mathewson
2011-08-17Don't write ControlPorts to disk till after we setuid and make datadirNick Mathewson
Fix for bug 3747; bugfix on 0.2.2.26-beta.
2011-08-15Remove extra quotation marks around the result of esc_for_logRobert Ransom
2011-08-10Ignore deprecation warnings on OS XSebastian Hahn
Starting with Lion, Apple decided to deprecate the system openssl. We can start requiring users to install their own openssl once OS X doesn't ship with it anymore.
2011-08-08Merge remote-tracking branch 'origin/maint-0.2.1' into maint-0.2.2Nick Mathewson
2011-08-08Update to the August 2011 GeoIP database.Karsten Loesing
2011-08-01put the 0.2.1.30 stanza in the 0.2.2 changelogRoger Dingledine
2011-07-20Check return value in fmt_addrNick Mathewson
Previously, if tor_addr_to_str() returned NULL, we would reuse the last value returned by fmt_addr(). (This could happen if we were erroneously asked to format an AF_UNSPEC address.) Now instead we return "???".
2011-07-19Untangle first sentence of changes/bug3607Nick Mathewson
2011-07-19Specify text or binary mode in every start_writing_to_stdio_file callRobert Ransom
2011-07-14Merge branch 'bug3577' into maint-0.2.2Nick Mathewson
2011-07-14Improve error msg on failed getinfo fingerprintNick Mathewson
2011-07-14Update HACKING with some more release instructionsSebastian Hahn
2011-07-13Change GETINFO fingerprint to look at server_mode, not my_descriptorNick Mathewson
It's possible for us to be a server and have a fingerprint without having yet generated a descriptor. Fixes bug 3577; bugfix on 0.2.0.1-alpha
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.