summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-08-27turn eventdns off by default until we can get some more usefultor-0.1.2.1-alphaRoger Dingledine
log messages into it. no use learning that it's broken without being able to learn what is broken too. svn:r8245
2006-08-27bump to 0.1.2.1-alphaRoger Dingledine
(does it work?) svn:r8244
2006-08-27fix typoRoger Dingledine
svn:r8243
2006-08-27bump the doxyfile version number, since i made a doxygenRoger Dingledine
ref man last week. svn:r8242
2006-08-27comment out an unused variable; nick, feel free to excise it further.Roger Dingledine
svn:r8241
2006-08-27clean up the 0.1.2.1-alpha changelogRoger Dingledine
svn:r8240
2006-08-270.1.2.1-alpha will break blossom exit node functionality; put thatRoger Dingledine
on the todo list. svn:r8239
2006-08-27a usability improvement i just thought ofRoger Dingledine
svn:r8238
2006-08-27typo and whitespaceRoger Dingledine
svn:r8237
2006-08-27stop a big memory leak: we were leaking the whole contentsRoger Dingledine
of cached-routers.new every time we read it. svn:r8236
2006-08-27stop three memory leaks. nick, fix these if i'm wrong.Roger Dingledine
svn:r8235
2006-08-27i'm guessing nick meant to check the return value of dns_init.Roger Dingledine
and revise some log severities to match the convention. svn:r8234
2006-08-27fix typoRoger Dingledine
svn:r8233
2006-08-26make a 'real soon now' section of the todo, to point outRoger Dingledine
what's more urgent svn:r8232
2006-08-26remove more completed itemsRoger Dingledine
svn:r8231
2006-08-26complete an item, abandon an item, defer an item.Roger Dingledine
svn:r8230
2006-08-26remove some more vestiges of cvsRoger Dingledine
svn:r8229
2006-08-26more todo items when we avoid putting /16 servers into the same circuitRoger Dingledine
svn:r8228
2006-08-26fix a log level -- err is for things that kill tor, warn is forRoger Dingledine
things that tor can recover from. also, avoid situations where people who don't read their logs accumulate ten thousand useless files in their datadir. svn:r8227
2006-08-25 r8576@Kushana: nickm | 2006-08-25 17:16:01 -0400Nick Mathewson
Fix bug 314: Instead of checking address_in_virtualrange, check addressmap_have_mapping(). This should be more accurate. [Rename to addressmap_have_mapping() from addressmap_already_mapped().] svn:r8226
2006-08-25 r8573@Kushana: nickm | 2006-08-25 16:55:19 -0400Nick Mathewson
Resolve bug 321 when using dnsworkers: append a period to every address we resolve at the exit node, so that we do not accidentally pick up local addresses, and so that failing searches are retried in the resolver search domains. (This is already solved for eventdns.) svn:r8225
2006-08-25 r8572@Kushana: nickm | 2006-08-25 16:35:49 -0400Nick Mathewson
Fix for bug 308: When we have a state file we cannot parse, tell the user, and move it aside. svn:r8224
2006-08-24make our socks5 handling more robust to broken socks clients:Roger Dingledine
throw out everything waiting on the buffer in between socks handshake phases, since they can't possibly (so the theory goes) have predicted what we plan to respond to them. svn:r8223
2006-08-24clean up logging conventions in do_list_fingerprint()Roger Dingledine
svn:r8222
2006-08-23tor --verify-config now exits with -1(255) or 0 depending on whetherRoger Dingledine
the config options are bad or good. svn:r8221
2006-08-22 r8557@Kushana: nickm | 2006-08-22 02:10:12 -0400Nick Mathewson
dns-related TODO changes. svn:r8215
2006-08-22 r8556@Kushana: nickm | 2006-08-22 01:22:46 -0400Nick Mathewson
Enable eventdns by default on platforms where we autoconf. This should be everything but windows. svn:r8214
2006-08-18fix typo pointed out by paulRoger Dingledine
svn:r7074
2006-08-18clean up AllowInvalidNodes man page entry.Roger Dingledine
svn:r7073
2006-08-17 r7411@Kushana: nickm | 2006-08-17 19:00:25 -0400Nick Mathewson
patch suggested by Karsten Loesing: respond to SIGNAL command before we execute the signal, in case the signal shuts us down. svn:r7072
2006-08-16 r7405@Kushana: nickm | 2006-08-16 14:38:46 -0400Nick Mathewson
Implement reverse DNS lookup in eventdns: add new entry point; rename old entry point; revise TODO a little; add facility for parsing dns names. svn:r7070
2006-08-16 r7404@Kushana: nickm | 2006-08-16 09:32:19 -0400Nick Mathewson
Pass hints to getaddrinfo; fix bug 280 (?) svn:r7069
2006-08-16automatically avoid picking more than one node from the sameRoger Dingledine
/16 network when constructing a circuit. svn:r7068
2006-08-16dns.c:173: warning: control reaches end of non-void functionRoger Dingledine
svn:r7067
2006-08-15 r7398@Kushana: nickm | 2006-08-15 00:49:50 -0400Nick Mathewson
Add missing backslash svn:r7065
2006-08-15 r7397@Kushana: nickm | 2006-08-15 00:46:18 -0400Nick Mathewson
Fix eventdns version of dns.c. Man, we need to get rid of this eventdns/dnsworker split. svn:r7064
2006-08-15 r7393@Kushana: nickm | 2006-08-14 23:51:07 -0400Nick Mathewson
remove extraneous #endif svn:r7063
2006-08-15 r7392@Kushana: nickm | 2006-08-14 23:50:32 -0400Nick Mathewson
Only do the expensive version of router_have_minimum_dir_info() when the dir info has changed. Backport candidate, since oprofile suggests that this function and ones it calls account for 25-35% of oprofile samples. svn:r7062
2006-08-14 r7386@Kushana: nickm | 2006-08-14 17:43:44 -0400Nick Mathewson
Patch from Adam Langley. * I meant getaddrinfo_a, not getaddrinfo_r - fixed * Added more checks to the parsing code. * It seems you switched an alloca to a malloc, but didn't add any frees svn:r7061
2006-08-14svn:r7060Nick Mathewson
2006-08-14 r7046@Kushana: nickm | 2006-08-05 13:57:04 -0400Nick Mathewson
Make it possible for dns_init() to fail; note failure of eventdns configuratoin. svn:r7059
2006-08-14 r7045@Kushana: nickm | 2006-08-05 13:56:44 -0400Nick Mathewson
mess with the TODO a little. svn:r7058
2006-08-14 r7383@Kushana: nickm | 2006-08-14 16:16:03 -0400Nick Mathewson
Stop walking entire dns cache for every request, now that we found our hash table bug. svn:r7057
2006-08-14checkpoint in-progress changelog notesRoger Dingledine
svn:r7054
2006-08-14avoid complaining about our SOCKS proxy proxy.Roger Dingledine
svn:r7053
2006-08-14note a compile warning that we should investigate one day.Roger Dingledine
svn:r7052
2006-08-14rename HELLO cells to VERSIONS cells.Roger Dingledine
svn:r7051
2006-08-14clarify that some old versions used an organizationName of "Tor",Roger Dingledine
and others used "TOR". We should avoid both now. svn:r7050
2006-08-14fix typos and stuffRoger Dingledine
svn:r7049
2006-08-14simplify compare_cached_resolves_by_expiry() to make it matchRoger Dingledine
the idioms of other compare functions. hopefully i didn't break it? svn:r7048