Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | be on the safer side about following the openssl license. i'm not sure | Roger Dingledine | 2005-10-30 | |
| | | | | | | | if some of our packages statically link any openssl libs. svn:r5334 | |||
* | 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 | |||
* | Remove last vestiges of old logging interface. | Nick Mathewson | 2005-10-25 | |
| | | | | svn:r5317 | |||
* | consistency is the hobgoblin of little armas | Roger Dingledine | 2005-10-25 | |
| | | | | svn:r5316 | |||
* | Switch remaining files to new log interface. | Nick Mathewson | 2005-10-25 | |
| | | | | svn:r5315 | |||
* | Also here. | Nick Mathewson | 2005-10-25 | |
| | | | | svn:r5314 | |||
* | Fix log levels notice and warn for new logging stuff | Peter Palfrader | 2005-10-25 | |
| | | | | svn:r5313 | |||
* | fix another segv, this time in circid fix. | Nick Mathewson | 2005-10-25 | |
| | | | | svn:r5312 | |||
* | fix a segv | Nick Mathewson | 2005-10-25 | |
| | | | | svn:r5311 | |||
* | Change more files to new loggin interface. 3 left. | Nick Mathewson | 2005-10-25 | |
| | | | | svn:r5310 | |||
* | Efficiency hack: call tor_fix_source_file late, not early. Add "BUG" ↵ | Nick Mathewson | 2005-10-25 | |
| | | | | | | domain. Domains are now bitmasks... just in case. Make some err msgs non-general. svn:r5309 | |||
* | Convert circuituse, command, config, connection, relay, router, test to new ↵ | Nick Mathewson | 2005-10-25 | |
| | | | | | | logging interface svn:r5308 | |||
* | Fix memory leak when retrieving networkstatus or routerdesc by malformed ↵ | Nick Mathewson | 2005-10-25 | |
| | | | | | | fingerprint svn:r5307 | |||
* | Fix possible free(NULL) in control.c | Nick Mathewson | 2005-10-25 | |
| | | | | svn:r5306 | |||
* | Fix possible minor memory leak when parsing helpernode state | Nick Mathewson | 2005-10-25 | |
| | | | | svn:r5305 | |||
* | Add core spec todos from meeting | Nick Mathewson | 2005-10-25 | |
| | | | | svn:r5304 | |||
* | add minor todos from meeting | Nick Mathewson | 2005-10-25 | |
| | | | | svn:r5303 | |||
* | Use LD_BUG as appropriate; convert rend* and router* to new logging ↵ | Nick Mathewson | 2005-10-24 | |
| | | | | | | interface; use new circ_log_path interface svn:r5302 | |||
* | Fix one possible source of reuse-a-circuit-id bug; convert circuitbuild to ↵ | Nick Mathewson | 2005-10-24 | |
| | | | | | | new logging svn:r5301 | |||
* | add more domains | Nick Mathewson | 2005-10-24 | |
| | | | | svn:r5300 | |||
* | if we expect tor to crash with the bug we can't solve, then at least | Roger Dingledine | 2005-10-24 | |
| | | | | | | | try to give users a more pleasant experience. svn:r5299 | |||
* | prefer thread-friendly dmalloc | Nick Mathewson | 2005-10-24 | |
| | | | | svn:r5298 | |||
* | Check for even more windows version flags, and note any we do not recognize. | Nick Mathewson | 2005-10-24 | |
| | | | | svn:r5297 | |||
* | Committing the rest of the osx tor+privoxy uninstall applet. | Andrew Lewman | 2005-10-24 | |
| | | | | svn:r5296 | |||
* | Committing the wrapper script for uninstallation. | Andrew Lewman | 2005-10-24 | |
| | | | | svn:r5295 | |||
* | make the hidden wiki link more prominent. | Roger Dingledine | 2005-10-24 | |
| | | | | svn:r5294 | |||
* | When warning about a networkstatus fp, we need to put it in hex. | Nick Mathewson | 2005-10-24 | |
| | | | | svn:r5293 | |||
* | Avoid potential infinite recursion when building a descriptor | Nick Mathewson | 2005-10-24 | |
| | | | | svn:r5292 | |||
* | Oct 19 13:27:24.391 [info] router_reload_networkstatus(): Skipping ↵ | Roger Dingledine | 2005-10-20 | |
| | | | | | | | | | cached-status file with unexpected name "." Oct 19 13:27:24.391 [info] router_reload_networkstatus(): Skipping cached-status file with unexpected name ".." svn:r5291 | |||
* | Crank down the frequency for replacing unchanged descriptors | Nick Mathewson | 2005-10-19 | |
| | | | | svn:r5290 | |||
* | Make it compile. appease roger and his thirst for documentation. | Nick Mathewson | 2005-10-19 | |
| | | | | svn:r5289 | |||
* | We need a routerlist_replace as well. This should do something about those ↵ | Nick Mathewson | 2005-10-19 | |
| | | | | | | annoying mysterious segfaults. svn:r5288 | |||
* | solve the first half of bug 199: if we don't like the looks | Roger Dingledine | 2005-10-19 | |
| | | | | | | | | of an address, but it's the controller's job to handle it, don't refuse it first. svn:r5287 | |||
* | Update more files to new log stuff. | Nick Mathewson | 2005-10-18 | |
| | | | | svn:r5286 | |||
* | Migrate a few more files to domained logging | Nick Mathewson | 2005-10-18 | |
| | | | | svn:r5285 |