aboutsummaryrefslogtreecommitdiff
path: root/src/or
Commit message (Expand)AuthorAge
* we used to kill the circuit when we receive a relay command we•••don't recognize. now we just drop it. perhaps this will make us more forward-compatible? or perhaps it will bite us? one day we will find out. svn:r5405 Roger Dingledine2005-11-17
* help the term "OP" become obsolete•••svn:r5403 Roger Dingledine2005-11-17
* bugfix: the controller doesn't mention it's a .onion if it is.•••svn:r5400 Roger Dingledine2005-11-16
* Add a new config option TestSocks so people can see if their•••applications are using socks4, socks4a, socks5-with-ip, or socks5-with-hostname. This way they don't have to keep mucking with tcpdump and wondering if something got cached somewhere. svn:r5399 Roger Dingledine2005-11-16
* Verify that router fingerprint lines match identity keys. (We dont use them, ...•••svn:r5389 Nick Mathewson2005-11-15
* another case where the poor server operator doesn't need to•••hear about lexi's bugs. svn:r5388 Roger Dingledine2005-11-15
* make it even more clear that i didn't screw up the logic•••svn:r5378 Roger Dingledine2005-11-15
* fix logic error: not unnamed is good.•••svn:r5377 Roger Dingledine2005-11-15
* Make new logging stuff work on windows; fix a couple of windows typos.•••svn:r5375 Nick Mathewson2005-11-15
* Fix number in error message•••svn:r5369 Nick Mathewson2005-11-14
* shorten more of the startup log messages•••svn:r5368 Roger Dingledine2005-11-14
* when a stream times out, provide less (but better) explanation•••of what happened. don't bother printing the path, since i don't know of any person who has gotten anything useful out of that. svn:r5367 Roger Dingledine2005-11-14
* We were refusing to start if you define SocksListenAddress•••but define SocksPort to be 0. But this is a standard configuration! So don't fail. svn:r5361 Roger Dingledine2005-11-11
* speed up the lookup-by-circid-orconn now that it seems that•••our code works. svn:r5358 Roger Dingledine2005-11-11
* when we were cannibalizing a circuit with a particular exit•••node in mind, we weren't checking to see if that exit node was already present earlier in the circuit. oops. svn:r5357 Roger Dingledine2005-11-11
* fix function comment•••svn:r5356 Roger Dingledine2005-11-11
* stop discouraging the old *BindAddress config options. we will•••just confuse our users when they upgrade. svn:r5354 Roger Dingledine2005-11-11
* simplify a log entry•••svn:r5353 Roger Dingledine2005-11-11
* fix a harmless warn and mark two points where we should•••maybe change our approach. svn:r5352 Roger Dingledine2005-11-11
* If we stop knowing about a dirserver between request and answer, do not die.•••svn:r5351 Nick Mathewson2005-11-08
* Tor26's IP has changed to 86.59.21.38•••svn:r5350 Peter Palfrader2005-11-05
* On directory servers, old_routers was wasting hundreds of bytes per supersede...•••svn:r5349 Nick Mathewson2005-11-05
* Fix bugs in routerlist_remove_old_cached_routers_with_id()•••svn:r5348 Nick Mathewson2005-11-04
* prevent duplicat mark-for-close•••svn:r5347 Nick Mathewson2005-11-04
* enable code to remove members of old_routers when it gets big.•••svn:r5345 Nick Mathewson2005-11-01
* fix a signed/unsigned warning•••svn:r5344 Nick Mathewson2005-11-01
* answer nick's XXX, and muck with some log domain choices•••svn:r5339 Roger Dingledine2005-11-01
* remove redundant checking for . and .. now that•••tor_listdir() checks for this too. svn:r5337 Roger Dingledine2005-11-01
* more doc cleanups and reorganizing•••svn:r5336 Roger Dingledine2005-11-01
* make circ->onionskin a pointer, not a static array. moria2 was using•••125000 circuit_t's after it had been up for a few weeks, which translates to 20+ megs of wasted space. svn:r5333 Roger Dingledine2005-10-29
* Do round-robin writes of at most 16 kB per write. This might•••be more fair on loaded Tor servers, and it might resolve our Windows crash bug. It might also slow things down. svn:r5332 Roger Dingledine2005-10-29
* fix typo•••svn:r5331 Roger Dingledine2005-10-29
* Free the v2 directory networkstatus on exit. (Not a leak.)•••svn:r5330 Nick Mathewson2005-10-29
* aaand another leak. Oops, I guess I lied to weasel when I told him there was...•••svn:r5329 Nick Mathewson2005-10-28
* router_add_to_routerlist() really needs to free not-added routers.•••svn:r5328 Nick Mathewson2005-10-28
* Fix bug when parsing list of router descriptors containing a truncated entry....•••svn:r5327 Nick Mathewson2005-10-28
* Fix a fun bug that was probably causing unnecessary downloads, and that coupl...•••svn:r5326 Nick Mathewson2005-10-27
* Fix an annoying rep violation bug•••svn:r5325 Nick Mathewson2005-10-27
* Start making directory caches retain old routerinfo_t. The code to remove ol...•••svn:r5323 Nick Mathewson2005-10-27
* Per comments at the bottom of openssl/FAQ, call even more functions to•••clean up OpenSSL's toys when it's done playing. (Why isn't there an OpenSSL_free_everything() function?) svn:r5321 Nick Mathewson2005-10-25
* remove some commented-out code that may tempt us to do ill•••svn:r5320 Nick Mathewson2005-10-25
* fix a nasty corruption bug•••svn:r5319 Nick Mathewson2005-10-25
* fix minor memory leak in config•••svn:r5318 Nick Mathewson2005-10-25
* Remove last vestiges of old logging interface.•••svn:r5317 Nick Mathewson2005-10-25
* Switch remaining files to new log interface.•••svn:r5315 Nick Mathewson2005-10-25
* fix another segv, this time in circid fix.•••svn:r5312 Nick Mathewson2005-10-25
* fix a segv•••svn:r5311 Nick Mathewson2005-10-25
* Change more files to new loggin interface. 3 left.•••svn:r5310 Nick Mathewson2005-10-25
* Efficiency hack: call tor_fix_source_file late, not early. Add "BUG" domain....•••svn:r5309 Nick Mathewson2005-10-25
* Convert circuituse, command, config, connection, relay, router, test to new l...•••svn:r5308 Nick Mathewson2005-10-25