Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | make it even more clear that i didn't screw up the logic | Roger Dingledine | 2005-11-15 |
| | | | | svn:r5378 | ||
* | fix logic error: not unnamed is good. | Roger Dingledine | 2005-11-15 |
| | | | | svn:r5377 | ||
* | Loops without an increment step can suck, even on windows. | Nick Mathewson | 2005-11-15 |
| | | | | svn:r5376 | ||
* | Make new logging stuff work on windows; fix a couple of windows typos. | Nick Mathewson | 2005-11-15 |
| | | | | svn:r5375 | ||
* | bump to 0.1.1.9-alpha | Roger Dingledine | 2005-11-15 |
| | | | | svn:r5374 | ||
* | Hm; looks like the callback business was unnecessary, since DHparams_dup() ↵ | Nick Mathewson | 2005-11-14 |
| | | | | | | copies dh->length. svn:r5372 | ||
* | Use a callback to set our DH parameters; set SSL_OP_SINGLE_DH_USE. | Nick Mathewson | 2005-11-14 |
| | | | | svn:r5371 | ||
* | Oops. It looks like there *was* an easy way to make openssl do what we wanted. | Nick Mathewson | 2005-11-14 |
| | | | | svn:r5370 | ||
* | Fix number in error message | Nick Mathewson | 2005-11-14 |
| | | | | svn:r5369 | ||
* | shorten more of the startup log messages | Roger Dingledine | 2005-11-14 |
| | | | | svn:r5368 | ||
* | when a stream times out, provide less (but better) explanation | Roger Dingledine | 2005-11-14 |
| | | | | | | | | 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 | ||
* | When logging via syslog, include the pid whenever we provide | Roger Dingledine | 2005-11-13 |
| | | | | | | | a log entry. Suggested by Todd Fries. svn:r5366 | ||
* | We were refusing to start if you define SocksListenAddress | Roger Dingledine | 2005-11-11 |
| | | | | | | | | but define SocksPort to be 0. But this is a standard configuration! So don't fail. svn:r5361 | ||
* | correct nick's comment | Roger Dingledine | 2005-11-11 |
| | | | | svn:r5360 | ||
* | Note that much of check_dh_key is voodoo; make x in DH be only 320 bits for ↵ | Nick Mathewson | 2005-11-11 |
| | | | | | | DH speed improvement: this wants auditing. [We have blessing from Ian on this.] (Note that DH in SSL is not yet affected.) svn:r5359 | ||
* | speed up the lookup-by-circid-orconn now that it seems that | Roger Dingledine | 2005-11-11 |
| | | | | | | | our code works. svn:r5358 | ||
* | when we were cannibalizing a circuit with a particular exit | Roger Dingledine | 2005-11-11 |
| | | | | | | | | node in mind, we weren't checking to see if that exit node was already present earlier in the circuit. oops. svn:r5357 | ||
* | fix function comment | Roger Dingledine | 2005-11-11 |
| | | | | svn:r5356 | ||
* | stop discouraging the old *BindAddress config options. we will | Roger Dingledine | 2005-11-11 |
| | | | | | | | just confuse our users when they upgrade. svn:r5354 | ||
* | simplify a log entry | Roger Dingledine | 2005-11-11 |
| | | | | svn:r5353 | ||
* | fix a harmless warn and mark two points where we should | Roger Dingledine | 2005-11-11 |
| | | | | | | | maybe change our approach. svn:r5352 | ||
* | If we stop knowing about a dirserver between request and answer, do not die. | Nick Mathewson | 2005-11-08 |
| | | | | svn:r5351 | ||
* | Tor26's IP has changed to 86.59.21.38 | Peter Palfrader | 2005-11-05 |
| | | | | svn:r5350 | ||
* | On directory servers, old_routers was wasting hundreds of bytes per ↵ | Nick Mathewson | 2005-11-05 |
| | | | | | | superseded router descriptor. Roll the signed descriptor info and identifying info into a cache_info struct, and use only that for old_routers. svn:r5349 | ||
* | Fix bugs in routerlist_remove_old_cached_routers_with_id() | Nick Mathewson | 2005-11-04 |
| | | | | svn:r5348 | ||
* | prevent duplicat mark-for-close | Nick Mathewson | 2005-11-04 |
| | | | | svn:r5347 | ||
* | enable code to remove members of old_routers when it gets big. | Nick Mathewson | 2005-11-01 |
| | | | | svn:r5345 | ||
* | fix a signed/unsigned warning | Nick Mathewson | 2005-11-01 |
| | | | | svn:r5344 | ||
* | using an unsigned int for something that requires at least 3 bytes | Roger Dingledine | 2005-11-01 |
| | | | | | | | makes me uncomfortable. svn:r5340 | ||
* | answer nick's XXX, and muck with some log domain choices | Roger Dingledine | 2005-11-01 |
| | | | | svn:r5339 | ||
* | tor_assert had a misleading comment | Roger Dingledine | 2005-11-01 |
| | | | | svn:r5338 | ||
* | remove redundant checking for . and .. now that | Roger Dingledine | 2005-11-01 |
| | | | | | | | tor_listdir() checks for this too. svn:r5337 | ||
* | more doc cleanups and reorganizing | Roger Dingledine | 2005-11-01 |
| | | | | svn:r5336 | ||
* | cleanups and a smidgen more docs | Roger Dingledine | 2005-11-01 |
| | | | | svn:r5335 | ||
* | make circ->onionskin a pointer, not a static array. moria2 was using | Roger Dingledine | 2005-10-29 |
| | | | | | | | | 125000 circuit_t's after it had been up for a few weeks, which translates to 20+ megs of wasted space. svn:r5333 | ||
* | Do round-robin writes of at most 16 kB per write. This might | Roger Dingledine | 2005-10-29 |
| | | | | | | | | be more fair on loaded Tor servers, and it might resolve our Windows crash bug. It might also slow things down. svn:r5332 | ||
* | fix typo | Roger Dingledine | 2005-10-29 |
| | | | | svn:r5331 | ||
* | Free the v2 directory networkstatus on exit. (Not a leak.) | Nick Mathewson | 2005-10-29 |
| | | | | svn:r5330 | ||
* | aaand another leak. Oops, I guess I lied to weasel when I told him there ↵ | Nick Mathewson | 2005-10-28 |
| | | | | | | was no leak here. svn:r5329 | ||
* | router_add_to_routerlist() really needs to free not-added routers. | Nick Mathewson | 2005-10-28 |
| | | | | svn:r5328 | ||
* | Fix bug when parsing list of router descriptors containing a truncated ↵ | Nick Mathewson | 2005-10-28 |
| | | | | | | entry. (Found by Lasse) svn:r5327 | ||
* | Fix a fun bug that was probably causing unnecessary downloads, and that ↵ | Nick Mathewson | 2005-10-27 |
| | | | | | | coupld possibly have caused some segfaults: When post-processing a split fingerprint URL, we were trying to base16_decode() entries already in the fingerprint list, failing, and removing them. Ow. svn:r5326 | ||
* | Fix an annoying rep violation bug | Nick Mathewson | 2005-10-27 |
| | | | | svn:r5325 | ||
* | fix a url in the sample torrc | Roger Dingledine | 2005-10-27 |
| | | | | svn:r5324 | ||
* | Start making directory caches retain old routerinfo_t. The code to remove ↵ | Nick Mathewson | 2005-10-27 |
| | | | | | | old ones is definitely some textbook C problem. svn:r5323 | ||
* | Call ERR_remove_state() on the main thread on shutdown,too | Nick Mathewson | 2005-10-26 |
| | | | | svn:r5322 | ||
* | Per comments at the bottom of openssl/FAQ, call even more functions to | Nick Mathewson | 2005-10-25 |
| | | | | | | | | clean up OpenSSL's toys when it's done playing. (Why isn't there an OpenSSL_free_everything() function?) svn:r5321 | ||
* | remove some commented-out code that may tempt us to do ill | Nick Mathewson | 2005-10-25 |
| | | | | svn:r5320 | ||
* | fix a nasty corruption bug | Nick Mathewson | 2005-10-25 |
| | | | | svn:r5319 | ||
* | fix minor memory leak in config | Nick Mathewson | 2005-10-25 |
| | | | | svn:r5318 |