aboutsummaryrefslogtreecommitdiff
path: root/src/or/circuitbuild.c
Commit message (Expand)AuthorAge
...
* Don't use helper nodes for circuits with purpose 'testing'.•••Also, when picking the helper node for a given circuit, exclude the circuit's exit from your choices. svn:r5569 Roger Dingledine2005-12-11
* when removing dead helpers, only write or_state to disk once at the•••end, not for every helper you remove. svn:r5568 Roger Dingledine2005-12-11
* fix yet another time comparison bug. we were abandoning helpers•••as soon as they became unavailable. (is this true?) svn:r5565 Roger Dingledine2005-12-11
* fix an error in reporting why we abandoned a helper node•••svn:r5564 Roger Dingledine2005-12-11
* choose helper nodes to have high capacity always•••svn:r5563 Roger Dingledine2005-12-11
* explain why 0.1.1.9-alpha-cvs is a special version.•••svn:r5552 Roger Dingledine2005-12-10
* when we changed from log_fn to debug/info/notice/warn/err,•••we screwed up the formatting in wild and unpredictable ways. fix it before it becomes convention to format logs in wild and unpredictable ways. still need to do src/common/ someday. svn:r5551 Roger Dingledine2005-12-10
* crank the max line limit down to 150 chars.•••svn:r5550 Roger Dingledine2005-12-10
* when we're checking reachability, make it clearer in the logs•••what to expect. svn:r5538 Roger Dingledine2005-12-08
* remove a redundant memcpy when extending to a new server•••and attaching circuits to it. svn:r5537 Roger Dingledine2005-12-08
* Document CREATE_FAST better in the code. Move our key expansion algorithm in...•••svn:r5530 Nick Mathewson2005-12-08
* Make clients use CREATE_FAST cells. add an option to disable this.•••svn:r5524 Nick Mathewson2005-12-07
* what the heck is wrong with this little piece of code?•••why can none of us get it right? it looks so simple. svn:r5521 Roger Dingledine2005-12-07
* Clean up some comments; remove some dead code•••svn:r5493 Nick Mathewson2005-12-03
* Shave off another 4.7%: remove a linear search when figuring out which circui...•••svn:r5489 Nick Mathewson2005-12-03
* Rename connection_get_by_identity_digest to reflect that it is OR-only. Make...•••svn:r5469 Nick Mathewson2005-11-30
* minor cleanup•••svn:r5454 Roger Dingledine2005-11-24
* Fix a bug found by Lasse Overlier: when we were making internal circuits•••(intended to be cannibalized later for rendezvous and introduction circuits), we were picking them so that they had useful exit nodes. There was no need for this, and it actually aids some statistical attacks. svn:r5453 Roger Dingledine2005-11-24
* remove some more dead code (found while hunting lasse's bug)•••svn:r5452 Roger Dingledine2005-11-24
* Recover better from TCP connections to Tor servers that are broken but•••don't tell you (it happens!); and rotate TLS connections once a week. 1) If an OR conn becomes more than a week old, make it obsolete. 2) If it's obsolete and empty, kill it. 3) When an OR makes a second connection to you, allow it. 4) If we want to send a new create cell, but the best conn we've got is obsolete, and the router is 0.1.1.9-alpha-cvs or later, ask for a new conn instead. 5) When we time out on circuit building on the first hop, make that connection obsolete. svn:r5429 Roger Dingledine2005-11-19
* Bugfix: it looks like some middleman circuits were spending the•••first few moments of their existence in CIRCUIT_STATE_OPEN, then when Alice sent an extend request for a Tor that they're not connected to, they switched to CIRCUIT_STATE_OR_WAIT and spent the rest of their sorry little lives in that state, even when the connection was established and they were shuttling relay cells back and forth. And I'm not going to backport this (yet), because somehow it worked! svn:r5427 Roger Dingledine2005-11-19
* On directory servers, old_routers was wasting hundreds of bytes per supersede...•••svn:r5349 Nick Mathewson2005-11-05
* 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
* Remove last vestiges of old logging interface.•••svn:r5317 Nick Mathewson2005-10-25
* Fix possible minor memory leak when parsing helpernode state•••svn:r5305 Nick Mathewson2005-10-25
* Fix one possible source of reuse-a-circuit-id bug; convert circuitbuild to ne...•••svn:r5301 Nick Mathewson2005-10-24
* Refactor routerlist access slightly: always use router_get_by_routerlist(); c...•••svn:r5276 Nick Mathewson2005-10-18
* fix a few comments•••svn:r5262 Roger Dingledine2005-10-17
* Make a few INFO log lines into DEBUG•••svn:r5257 Peter Palfrader2005-10-17
* more log uncluttering•••svn:r5254 Roger Dingledine2005-10-17
* Make --hash-password not craash on exit.•••svn:r5243 Nick Mathewson2005-10-12
* Check for named servers when looking them up by nickname;•••warn when we'recalling a non-named server by its nickname; don't warn twice about the same name. Fix a bug in routers_update_status_from_networkstatus that made nearly all clients never update routerinfo_t.is_named. Try to list MyFamily elements by key, not by nickname. Only warn about names that we generated ourself, or got from the local user. On TLS handshake, only check the other router's nickname against its expected nickname if is_named is set. svn:r5185 Nick Mathewson2005-10-04
* comment cleanups•••svn:r5181 Roger Dingledine2005-10-04
* free helper node status info on shutdown•••svn:r5177 Nick Mathewson2005-09-30
* Add a bunch more warnings to out warning suite; resolve them; pack structs a ...•••svn:r5150 Nick Mathewson2005-09-29
* Fix a bunch of log messages. Deprecate some routerlist fields; remove others...•••svn:r5068 Nick Mathewson2005-09-14
* Clean up a few warnings that make gcc twig out a bit.•••svn:r5062 Nick Mathewson2005-09-14
* a bit more code cleanup•••svn:r5033 Roger Dingledine2005-09-13
* generalize route length to three plus one if the exit node is risky.•••svn:r4978 Roger Dingledine2005-09-10
* add punctuation•••svn:r4924 Roger Dingledine2005-09-08
* Log when falling back to nonfast/nonstabl routers•••svn:r4869 Nick Mathewson2005-08-26
* when we're trying to build a circuit and we're being picky about what•••sort we get but there aren't any suitable servers, try being less picky rather than simply failing. svn:r4867 Roger Dingledine2005-08-26
* whoops, avoid printing a null string sometimes•••svn:r4815 Roger Dingledine2005-08-22
* when we begin reachability testing, log the address:port for each•••port we're testing, so people are more likely to notice that they're using the wrong ip address. svn:r4808 Roger Dingledine2005-08-22
* Implement exit enclaves: if we know an IP address for the destination,•••and there's a running Tor server at that address which allows exit to the destination, then extend the circuit to that exit first. Also, if the user asks for a .exit node, cannibalize general circs for it. svn:r4779 Roger Dingledine2005-08-15
* Make GCC very happy, even with lots of warnings set. Also, try to fix some re...•••svn:r4770 Nick Mathewson2005-08-12
* Replace (Fascist)Firewall* with a new ReachableAddresses option that understa...•••svn:r4751 Nick Mathewson2005-08-08
* Generalize FirewallPorts to FirewallIPs so I can run happily when locked in n...•••svn:r4737 Nick Mathewson2005-08-07
* Implement some more GETINFO goodness: expose helper nodes, config options, ge...•••svn:r4694 Nick Mathewson2005-08-04
* Fix bug in state parsing•••svn:r4681 Nick Mathewson2005-07-28